mirror of
https://github.com/bolucat/Archive.git
synced 2025-12-24 13:28:37 +08:00
46 lines
669 B
Bash
Executable File
46 lines
669 B
Bash
Executable File
#!/bin/bash
|
|
set -e
|
|
|
|
source "buildScript/init/env.sh"
|
|
ENV_NB4A=1
|
|
source "buildScript/lib/core/get_source_env.sh"
|
|
pushd ..
|
|
|
|
######
|
|
## From nekoray/libs/get_source.sh
|
|
######
|
|
|
|
####
|
|
|
|
if [ ! -d "sing-box" ]; then
|
|
git clone --no-checkout https://github.com/MatsuriDayo/sing-box.git
|
|
fi
|
|
pushd sing-box
|
|
git checkout "$COMMIT_SING_BOX"
|
|
|
|
popd
|
|
|
|
####
|
|
|
|
if [ ! -d "sing-quic" ]; then
|
|
git clone --no-checkout https://github.com/MatsuriDayo/sing-quic.git
|
|
fi
|
|
pushd sing-quic
|
|
git checkout "$COMMIT_SING_QUIC"
|
|
|
|
popd
|
|
|
|
####
|
|
|
|
if [ ! -d "libneko" ]; then
|
|
git clone --no-checkout https://github.com/MatsuriDayo/libneko.git
|
|
fi
|
|
pushd libneko
|
|
git checkout "$COMMIT_LIBNEKO"
|
|
|
|
popd
|
|
|
|
####
|
|
|
|
popd
|