Skip to content

Commit c886c78

Browse files
let's see those logs
1 parent d0ca5cb commit c886c78

File tree

1 file changed

+2
-6
lines changed

1 file changed

+2
-6
lines changed

.circleci/deploy.sh

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -55,18 +55,14 @@ if [[ -d "$PROJECT_DIR/assets/" ]]; then
5555
rsync -rc "$PROJECT_DIR/assets/" assets/ --delete
5656
fi
5757

58-
# Clean up working copy to satisfy svn-files.
59-
echo "SVN cleanup..."
60-
svn cleanup
61-
6258
# Add everything and commit to SVN.
6359
# The force flag ensures we recurse into subdirectories even if they are already added.
6460
# Suppress stdout in favor of svn status later for readability.
6561
echo "Preparing files..."
66-
svn add . --force > /dev/null
62+
svn add . --force
6763

6864
# SVN delete all deleted files and suppress stdout.
69-
svn status | grep '^\!' | sed 's/! *//' | xargs -I% svn rm %@ > /dev/null
65+
svn status | grep '^\!' | sed 's/! *//' | xargs -I% svn rm %@
7066

7167
# Copy trunk into the current tag directory.
7268
echo "Copying tag..."

0 commit comments

Comments
 (0)