Skip to content

Commit

Permalink
more release script debugging
Browse files Browse the repository at this point in the history
  • Loading branch information
diosmosis committed Jun 18, 2024
1 parent 953cbd8 commit d8171d8
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions scripts/deploy.sh
Original file line number Diff line number Diff line change
Expand Up @@ -112,10 +112,12 @@ for chunk in ${PIECES[@]}; do
exit 1;
fi

cat trunk/readme.txt

# The force flag ensures we recurse into subdirectories even if they are already added
# Suppress stdout in favor of svn status later for readability
echo "➤ Preparing files ($chunk)..."
svn add . --force # > /dev/null
svn add . --force > /dev/null

# SVN delete all deleted files
# Also suppress stdout here
Expand All @@ -137,7 +139,7 @@ for chunk in ${PIECES[@]}; do
fi

echo "➤ svn status ($chunk)..."
# svn status
svn status

echo "➤ Committing files ($chunk)..."
svn commit -m "Update to version $VERSION from GitHub ($chunk)" --no-auth-cache --non-interactive --username "$SVN_USERNAME" --password "$SVN_PASSWORD"
Expand Down

0 comments on commit d8171d8

Please sign in to comment.