scripts: ios: call mkdir -p to not error out if the directory already exists (thanks, @ksagaming)

This commit is contained in:
Alibek Omarov
2026-04-04 17:34:02 +05:00
parent 255c9bcaed
commit 6faee8fd89

View File

@@ -12,7 +12,7 @@ else
git clone --recursive https://github.com/FWGS/hlsdk-portable -b "$1" "$MODPATH"
fi
mkdir ../../build/ios || exit 1
mkdir -p ../../build/ios || exit 1
IOSDIR=$(realpath ../../build/ios)
cd "$MODPATH" || exit 1