This commit is contained in:
paltovkone
2026-03-15 09:40:12 +04:00
parent 090b85e756
commit ac213d9843
3 changed files with 7 additions and 2 deletions

BIN
v2ray/.DS_Store vendored

Binary file not shown.

View File

@ -1,3 +1,3 @@
VERSION = 5.46.0
VERSION = 5.47.0
IMAGE = debian:bookworm-slim
STEPS = env download publish
STEPS = env download patch publish

5
v2ray/scripts/patch.sh Executable file
View File

@ -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