diff --git a/v2ray/.DS_Store b/v2ray/.DS_Store index ce47170..5181415 100644 Binary files a/v2ray/.DS_Store and b/v2ray/.DS_Store differ diff --git a/v2ray/Makefile b/v2ray/Makefile index 05bf9dc..156caaa 100644 --- a/v2ray/Makefile +++ b/v2ray/Makefile @@ -1,3 +1,3 @@ -VERSION = 5.46.0 +VERSION = 5.47.0 IMAGE = debian:bookworm-slim -STEPS = env download publish \ No newline at end of file +STEPS = env download patch publish diff --git a/v2ray/scripts/patch.sh b/v2ray/scripts/patch.sh new file mode 100755 index 0000000..2a8440f --- /dev/null +++ b/v2ray/scripts/patch.sh @@ -0,0 +1,5 @@ +#!/bin/sh + +cd dist/systemd/system && \ +sed -i 's|/usr/local/etc/v2ray/|/etc/v2ray/|g' v2ray.service v2ray@.service && \ +echo "Patched successfully" || echo "Patch failed" >&2