summary refs log tree commit diff
path: root/Makefile
diff options
context:
space:
mode:
authorZach DeCook <zachdecook@librem.one>2023-10-24 17:55:52 -0400
committerZach DeCook <zachdecook@librem.one>2023-10-24 17:55:52 -0400
commit7cb7bdc2cab115ed0d8e2d670f56a42c635fd73b (patch)
treeb2ea10168e2fc7b61d04a8d17d84eb069989804e /Makefile
parent4073009d199cf6b05f7ce92b904c8ffc260eb6c7 (diff)
downloadswipeGuess-7cb7bdc2cab115ed0d8e2d670f56a42c635fd73b.tar.gz
Makefile: Quote backticks for better error messages when it fails v0.3.1
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 6b730a8..d38c810 100644
--- a/Makefile
+++ b/Makefile
@@ -17,8 +17,8 @@ words-qwerty-en: /usr/share/dict/american-english mapScore
 	apk add words-en
 
 test: words-qwerty-en swipeGuess
-	test `echo "asdfghjkl" | ./swipeGuess words-qwerty-en` = "all"
-	test `echo "dfghuiokmnhyt" | ./swipeGuess words-qwerty-en 1 "'"` = "don't"
+	test "`echo "asdfghjkl" | ./swipeGuess words-qwerty-en`" = "all"
+	test "`echo "dfghuiokmnhyt" | ./swipeGuess words-qwerty-en 1 "'"`" = "don't"
 	test "`echo "tyuiopoiuytrewertyuiuytrer" | ./swipeGuess words-qwerty-en 2`" = "`printf "typewriter\ttorturer"`"
 
 install: all