mpimcexec: fix empty ${COMMAND} check

Change-Id: I9e37e952fb756a4aafb4b2e218844120fe59af7b
This commit is contained in:
Balazs Gerofi
2018-06-20 16:02:39 +09:00
parent 922bd7e6eb
commit 7736e25ca4

View File

@ -120,7 +120,7 @@ if [ -z ${RANKS} ] && [ -z ${NODES} ]; then
help_exit
fi
if [ x${COMMAND} = x ]; then
if [ "x${COMMAND}" = "x" ]; then
echo "error: please specify command"
help_exit
fi