[Other] Rename simple-obfs to obfs-local

This commit is contained in:
Connection Refused
2021-10-16 13:17:27 +08:00
parent d0d212b64a
commit 41d74cae5a
2 changed files with 2 additions and 2 deletions

View File

@@ -11,5 +11,5 @@ if ( -Not $? ) {
exit $lastExitCode
}
cp -Force '.\simple-obfs.exe' '..\..\release\simple-obfs.exe'
cp -Force '.\obfs-local.exe' '..\..\release\obfs-local.exe'
exit 0

View File

@@ -6,5 +6,5 @@ git submodule update --init || exit $?
make -j2 || exit $?
gcc $(find src/ -name "obfs_local-*.o") $(find . -name "*.a" ! -name "*.dll.a") "${PWD}/../../build/lib/libev.a" -o simple-obfs -fstack-protector -static -lws2_32 -s
gcc $(find src/ -name "obfs_local-*.o") $(find . -name "*.a" ! -name "*.dll.a") "${PWD}/../../build/lib/libev.a" -o obfs-local -fstack-protector -static -lws2_32 -s
exit $?