mirror of
https://github.com/v2fly/v2ray-core.git
synced 2024-11-02 09:17:55 -04:00
9 lines
94 B
Bash
Executable File
9 lines
94 B
Bash
Executable File
#!/bin/bash
|
|
set -e
|
|
|
|
if [ ! -e "server-cfg.json" ]; then
|
|
./gen-server-cfg.sh
|
|
fi
|
|
|
|
exec "$@"
|