Skip to content

Commit

Permalink
Release 1.10.2
Browse files Browse the repository at this point in the history
  • Loading branch information
flakas committed Nov 28, 2021
1 parent 47df99c commit dbee4b8
Show file tree
Hide file tree
Showing 2 changed files with 1,428 additions and 1,428 deletions.
4 changes: 2 additions & 2 deletions bin/release.sh
Original file line number Diff line number Diff line change
Expand Up @@ -179,9 +179,9 @@ if [ "$PROCEED" != "y" ]; then echo "Aborting..."; exit 1; fi
echo "Changing directory to SVN and committing to trunk"
cd $SVNPATH/trunk/
# Delete all files that should not now be added.
svn status | grep -v "^.[ \t]*\..*" | grep "^\!" | awk '{print $2}' | xargs svn del
svn status | grep -v "^.[ \t]*\..*" | grep "^\!" | awk '{print $2}' | xargs -n1 svn del
# Add all new files that are not set to be ignored
svn status | grep -v "^.[ \t]*\..*" | grep "^?" | awk '{print $2}' | xargs svn add
svn status | grep -v "^.[ \t]*\..*" | grep "^?" | awk '{print $2}' | xargs -n1 svn add
svn commit --username=$SVNUSER -m "Preparing for $NEWVERSION1 release"

echo "Updating WordPress plugin repo assets and committing"
Expand Down
Loading

0 comments on commit dbee4b8

Please sign in to comment.