tps.sh: fix wrong string comparison operator

parent a8014936
......@@ -3,7 +3,7 @@
rm -fr /tmp/tps*
serial=$1
if [ x$1 == x"" ]; then
if [ x$1 = x"" ]; then
echo -n "Please, input SERIAL number: "
read serial
fi
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment