From d0275fb455efab23aafe2b6887f8b2166c173c5f Mon Sep 17 00:00:00 2001 From: Michel Palourdio Date: Fri, 10 May 2024 19:04:17 +0200 Subject: [PATCH] chore: Move genzip.sh to tmp repo --- bin/genzip.sh | 19 ------------------- 1 file changed, 19 deletions(-) delete mode 100755 bin/genzip.sh diff --git a/bin/genzip.sh b/bin/genzip.sh deleted file mode 100755 index 867aee4..0000000 --- a/bin/genzip.sh +++ /dev/null @@ -1,19 +0,0 @@ -#!/bin/bash - -sh_path=$(realpath $0) -bin_path=$(dirname $sh_path) -echo Working in $bin_path - -rm -f $bin_path/*.so -rm -f $bin_path/*.zip -rm -f $bin_path/flhacker - -cp $bin_path/../target/*.so $bin_path -cp $bin_path/../target/flhacker $bin_path - -zip -j $bin_path/flhacker.zip $bin_path/*.so $bin_path/flhacker - -rm -f $bin_path/*.so -rm -f $bin_path/flhacker - -git add $bin_path/flhacker.zip