これは私のコードです:
echo $1 $2
if [ "Release"!="$2" -a "Debug"!="{$2}" ]; then
echo "error! the arg of -c must be \"Release\" or \"Debug\" !"
exit 1
fi
XCODECONFIG="$2";
私が入力するとき
./build.sh a Release
出力は次のとおりです。
a Release
error! the arg of -c must be "Release" or "Debug" !
「エラー! -c の引数は "Release" または "Debug" でなければなりません!」と表示されます。XCODECONFIG="$2" に進まないのはなぜですか?