aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2018-12-06 14:53:43 +1300
committerTom Ryder <tom@sanctum.geek.nz>2018-12-06 14:53:43 +1300
commit51fe73814a5aa27cbeac1df6f5a7f0db493d0e88 (patch)
treef2a6911fcd6f3d82497feded13b9c1226493642a
parentCorrect/adjust default behaviour with no args (diff)
downloadwatch-vcs-tags-51fe73814a5aa27cbeac1df6f5a7f0db493d0e88.tar.gz
watch-vcs-tags-51fe73814a5aa27cbeac1df6f5a7f0db493d0e88.zip
Remove unneeded semicolon
-rw-r--r--watch-git-tags.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/watch-git-tags.sh b/watch-git-tags.sh
index ba63f1c..7dabb71 100644
--- a/watch-git-tags.sh
+++ b/watch-git-tags.sh
@@ -29,7 +29,7 @@ if [ "$#" -eq 0 ] ; then
fi
# Iterate through each repo in a subshell in parallel
-for repo ; do (
+for repo do (
# Make a temporary directory with a hash in its name for uniqueness
name=$(printf '%s' "$repo" | sed 's:/:_:g')