From a829129a505f3768875c68da2237771d03d8a981 Mon Sep 17 00:00:00 2001 From: YZBruh Date: Tue, 15 Jul 2025 10:16:10 +0300 Subject: [PATCH] mkmod.sh: fix copying binary --- mkmod.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mkmod.sh b/mkmod.sh index db548aa..cc0f7de 100644 --- a/mkmod.sh +++ b/mkmod.sh @@ -86,7 +86,7 @@ mkzip() rm -f $PWD/system/bin/placeholder $PWD/system/bin/disable_watchdog mk_customize $1 > $PWD/customize.sh chmod 755 $PWD/customize.sh - cp $dir/disable_watchdog $PWD/system/bin + cp ../$dir/disable_watchdog $PWD/system/bin zip -rq $MOD * mv $MOD .. cd ..