From 10234e5daf82802a32753e4ec9afda69de44ecc1 Mon Sep 17 00:00:00 2001 From: Haruue Date: Wed, 29 May 2024 11:28:33 +0800 Subject: [PATCH] fix(hyperbole): missing v2 in cmdpkg --- hyperbole.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hyperbole.py b/hyperbole.py index 978ef8c..fc38eba 100755 --- a/hyperbole.py +++ b/hyperbole.py @@ -29,7 +29,7 @@ BUILD_DIR = "build" CORE_SRC_DIR = "./core" EXTRAS_SRC_DIR = "./extras" APP_SRC_DIR = "./app" -APP_SRC_CMD_PKG = "github.com/apernet/hysteria/app/cmd" +APP_SRC_CMD_PKG = "github.com/apernet/hysteria/app/v2/cmd" MODULE_SRC_DIRS = [CORE_SRC_DIR, EXTRAS_SRC_DIR, APP_SRC_DIR]