We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0676f55 commit a97b56aCopy full SHA for a97b56a
bin/clean.sh
@@ -14,6 +14,10 @@ elif (( TARGET_IPHONE_SIMULATOR )); then
14
platform="iPhoneSimulator"
15
fi
16
17
+if (( $# == 0 )); then
18
+ do_clean_env_only=1
19
+fi
20
+
21
while (( $# > 0 )); do
22
declare arg="$1"; shift
23
if [[ "$arg" = "--arch" ]]; then
@@ -23,6 +27,7 @@ while (( $# > 0 )); do
27
24
28
if [[ "$arg" = "--full" ]]; then
25
29
do_full_clean=1
30
26
31
continue
32
elif [[ "$arg" = "--platform" ]]; then
33
if [[ "$1" = "ios" ]] || [[ "$1" = "iPhoneOS" ]] || [[ "$1" = "iphoneos" ]]; then
0 commit comments