mirror of
https://github.com/klzgrad/naiveproxy.git
synced 2025-04-06 15:23:37 +03:00
Under windows, official python installation path contains space such as "/c/Program Files/Python311/python". Need escape PYTHON environment variable with quotes in bash script.
21 lines
580 B
Bash
Executable file
21 lines
580 B
Bash
Executable file
#!/bin/sh
|
|
|
|
set -ex
|
|
|
|
script_dir=$(dirname "$PWD/$0")
|
|
PYTHON="$(which python3 2>/dev/null || which python 2>/dev/null)"
|
|
|
|
[ "$1" ] || exit 1
|
|
naive="$PWD/$1"
|
|
|
|
. ./get-sysroot.sh
|
|
|
|
if [ "$WITH_ANDROID_IMG" ]; then
|
|
rootfs="$PWD/out/sysroot-build/android/$WITH_ANDROID_IMG"
|
|
elif [ "$WITH_SYSROOT" ]; then
|
|
rootfs="$PWD/$WITH_SYSROOT"
|
|
fi
|
|
|
|
cd /tmp
|
|
"$PYTHON" "$script_dir"/basic.py --naive="$naive" --rootfs="$rootfs" --target_cpu="$target_cpu" --server_protocol=https
|
|
"$PYTHON" "$script_dir"/basic.py --naive="$naive" --rootfs="$rootfs" --target_cpu="$target_cpu" --server_protocol=http
|