Skip to content

Commit

Permalink
fix too many arguments error in foreach.sh
Browse files Browse the repository at this point in the history
  • Loading branch information
javefang committed Nov 20, 2018
1 parent b6af8ed commit d21975e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion foreach.sh
Expand Up @@ -2,7 +2,7 @@
# Run a command for each of our packages
set -x

if [ $1 = '--changed' ]; then
if [ "$1" = '--changed' ]; then
shift
# Package list, filtered to ones changed since last tag
LAST_TAG=$(git tag -l v\* | sort -t. -k 1,1n -k 2,2n -k 3,3n -k 4,4n | tail -1)
Expand Down

0 comments on commit d21975e

Please sign in to comment.