aboutsummaryrefslogtreecommitdiff
path: root/doc/articles/wiki/test.bash
diff options
context:
space:
mode:
Diffstat (limited to 'doc/articles/wiki/test.bash')
-rwxr-xr-xdoc/articles/wiki/test.bash2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/articles/wiki/test.bash b/doc/articles/wiki/test.bash
index 8bbb734750..cec51fd3de 100755
--- a/doc/articles/wiki/test.bash
+++ b/doc/articles/wiki/test.bash
@@ -20,7 +20,7 @@ trap cleanup 0 INT
rm -f get.bin final-test.bin a.out
# If called with -all, check that all code snippets compile.
-if [ "$1" == "-all" ]; then
+if [ "$1" = "-all" ]; then
for fn in *.go; do
go build -o a.out $fn
done