Any ideas what is wrong with this code?
CLIENT_BUILD_DIR=\"~/Desktop/TempDir/\" if [ ! -d $CLIENT_BUILD_DIR ] then { mkdir $CLIENT_BUILD_DIR } f
mkdir ${CLIENT_BUILD_DIR} will do. No directory will be created if it already exists.
mkdir ${CLIENT_BUILD_DIR}