Skip to content

Commit 275f116

Browse files
deploy.sh: Tidying how we're handling .svnignore
1 parent 79d98fc commit 275f116

File tree

2 files changed

+7
-8
lines changed

2 files changed

+7
-8
lines changed

.svnignore

+6-7
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,17 @@
1-
.git/
1+
.git
22
.gitignore
3-
.sass-cache/
3+
.sass-cache
44
.jshintrc
55
.jshintignore
66
.travis.yml
77
readme.md
88
phpunit.xml.dist
9-
tests/
10-
tools/
9+
tests
10+
tools
1111
package.json
1212
Gruntfile.js
13-
node_modules/
13+
node_modules
1414
languages/jetpack.pot
15-
1615
_inc/lib/icalendar-reader.php
1716
modules/shortcodes/upcoming-events.php
18-
modules/widgets/upcoming-events.php
17+
modules/widgets/upcoming-events.php

tools/deploy-to-svn.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ rsync -r --exclude='*.git*' $JETPACK_GIT_DIR/* $JETPACK_SVN_DIR/trunk
4444

4545
# check .svnignore
4646
for file in $( cat "$JETPACK_GIT_DIR/.svnignore" 2>/dev/null ); do
47-
rm trunk/$file -rf
47+
rm -rf trunk/$file
4848
done
4949

5050
# Tag the release.

0 commit comments

Comments
 (0)