Skip to content

Commit 24e41c8

Browse files
authored
Merge pull request #521 from bacongobbler/fix-gutenbuild-again
fix(gutenbuild): prepend grep string with --
2 parents 217f128 + 1e87307 commit 24e41c8

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

_scripts/gutenbuild

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ PATH=$HOME/.local/bin:$PATH BUILDDIR=${build_dest} make deps build
1616

1717
# also build each version of the docs out to /en/<tag>
1818
# NOTE(bacongobbler): do not build any pre-release tags
19-
for tag in $(git tag | grep -v "-alpha\|-beta\|-rc"); do
19+
for tag in $(git tag | grep -v -- "-alpha\|-beta\|-rc"); do
2020
tag_build_dest="$build_dest/en/$tag"
2121
git checkout $tag
2222
PATH=$HOME/.local/bin:$PATH BUILDDIR=${tag_build_dest} make deps build

0 commit comments

Comments
 (0)