We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 15d7f90 commit 23a14b5Copy full SHA for 23a14b5
1 file changed
deploy.sh
@@ -152,8 +152,12 @@ svn update
152
153
svn status
154
155
-echo "➤ Committing files..."
156
-svn commit -m "Update to version $VERSION from GitHub" --no-auth-cache --non-interactive --username "$SVN_USERNAME" --password "$SVN_PASSWORD"
+if [[ "$DEBUG" != false ]]; then
+ echo "➤ Committing files..."
157
+ svn commit -m "Update to version $VERSION from GitHub" --no-auth-cache --non-interactive --username "$SVN_USERNAME" --password "$SVN_PASSWORD"
158
+else
159
+ echo "➤ Debug mode: Files not committed."
160
+fi
161
162
if $INPUT_GENERATE_ZIP; then
163
echo "Generating zip file..."
0 commit comments