global: Small fixes to asm scripts ("==" problem)
[h316.git] / bin / asm
diff --git a/bin/asm b/bin/asm
index 0fabd8d65d64d55d9ac9db99635af1a233e3e29a..03336f9b4ccbb2876dd6b871d87383f55900de2a 100755 (executable)
--- a/bin/asm
+++ b/bin/asm
@@ -9,7 +9,7 @@ fi
 echo -en "Assembler: Translating \"$1\":"
 
 for n in $*; do
-  if [ $n == "/v" ]; then
+  if [ $n = "/v" ]; then
     VERBOSE=yes
   fi
 done
@@ -38,7 +38,7 @@ go
 quit 
 EOF
 
-if [ "$VERBOSE" == "yes" ]; then
+if [ "$VERBOSE" = "yes" ]; then
   h316 $name.go 
 else
   h316 $name.go > /dev/null