Skip to content

Commit cc8f3f1

Browse files
authored
Merge pull request #22 from Gaya/add/escape-at-signs
Escape paths which are removed by SVN. Fixes #13
2 parents 517452a + 0171c6e commit cc8f3f1

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

entrypoint.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ svn add . --force > /dev/null
107107

108108
# SVN delete all deleted files
109109
# Also suppress stdout here
110-
svn status | grep '^\!' | sed 's/! *//' | xargs -I% svn rm % > /dev/null
110+
svn status | grep '^\!' | sed 's/! *//' | xargs -I% svn rm %@ > /dev/null
111111

112112
# Copy tag locally to make this a single commit
113113
echo "➤ Copying tag..."

0 commit comments

Comments
 (0)