add -q to unzip

This commit is contained in:
CherretGit
2026-01-19 01:01:35 +07:00
parent 4230027933
commit dabdd9adb1

View File

@@ -20,7 +20,7 @@ _download_android_ndk:
curl -L -C - -o "$TMPFILE" "https://dl.google.com/android/repository/android-ndk-{{ANDROID_NDK_VERSION}}.zip"
unzip "$TMPFILE" -d "$TMPDIR"
unzip -q "$TMPFILE" -d "$TMPDIR"
inner_folder=$(find "$TMPDIR" -mindepth 1 -maxdepth 1 -type d | head -n 1)
mv -T "$inner_folder" "$NDK_HOME"