This repository was archived by the owner on May 10, 2023. It is now read-only.
File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -201,19 +201,19 @@ echo
201201echo " Changing directory to SVN and committing to trunk."
202202cd $SVNPATH /trunk/
203203# Delete all files that should not now be added.
204- svn status | grep -v " ^.[ \t]*\..*" | grep " ^\!" | awk ' {print $2"@"}' | xargs -r svn del
204+ svn status | grep -v " ^.[ \t]*\..*" | grep " ^\!" | awk ' {print $2"@"}' | xargs svn del
205205# Add all new files that are not set to be ignored
206- svn status | grep -v " ^.[ \t]*\..*" | grep " ^?" | awk ' {print $2"@"}' | xargs -r svn add
206+ svn status | grep -v " ^.[ \t]*\..*" | grep " ^?" | awk ' {print $2"@"}' | xargs svn add
207207svn commit --username=$SVNUSER -m " Preparing for $PLUGINVERSION release"
208208
209209echo
210210
211211echo " Updating WordPress plugin repo assets and committing."
212212cd $SVNPATH /assets/
213213# Delete all new files that are not set to be ignored
214- svn status | grep -v " ^.[ \t]*\..*" | grep " ^\!" | awk ' {print $2"@"}' | xargs -r svn del
214+ svn status | grep -v " ^.[ \t]*\..*" | grep " ^\!" | awk ' {print $2"@"}' | xargs svn del
215215# Add all new files that are not set to be ignored
216- svn status | grep -v " ^.[ \t]*\..*" | grep " ^?" | awk ' {print $2"@"}' | xargs -r svn add
216+ svn status | grep -v " ^.[ \t]*\..*" | grep " ^?" | awk ' {print $2"@"}' | xargs svn add
217217svn update --quiet --accept working $SVNPATH /assets/*
218218svn commit --username=$SVNUSER -m " Updating assets"
219219
You can’t perform that action at this time.
0 commit comments