mirror of
https://github.com/MatsuriDayo/nekoray.git
synced 2025-12-17 20:44:38 +03:00
18 lines
236 B
Bash
Executable File
18 lines
236 B
Bash
Executable File
#!/bin/bash
|
|
set -e
|
|
|
|
source libs/deploy_common.sh
|
|
|
|
#### get source ####
|
|
COMMIT_V=$(cat core_commit.txt)
|
|
|
|
pushd ..
|
|
|
|
git clone --no-checkout https://github.com/MatsuriDayo/v2ray-core.git
|
|
|
|
pushd v2ray-core
|
|
git checkout $COMMIT_V
|
|
popd
|
|
|
|
popd
|