File tree Expand file tree Collapse file tree 1 file changed +2
-6
lines changed Expand file tree Collapse file tree 1 file changed +2
-6
lines changed Original file line number Diff line number Diff line change @@ -55,18 +55,14 @@ if [[ -d "$PROJECT_DIR/assets/" ]]; then
55
55
rsync -rc " $PROJECT_DIR /assets/" assets/ --delete
56
56
fi
57
57
58
- # Clean up working copy to satisfy svn-files.
59
- echo " SVN cleanup..."
60
- svn cleanup
61
-
62
58
# Add everything and commit to SVN.
63
59
# The force flag ensures we recurse into subdirectories even if they are already added.
64
60
# Suppress stdout in favor of svn status later for readability.
65
61
echo " Preparing files..."
66
- svn add . --force > /dev/null
62
+ svn add . --force
67
63
68
64
# 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 %@
70
66
71
67
# Copy trunk into the current tag directory.
72
68
echo " Copying tag..."
You can’t perform that action at this time.
0 commit comments