mirror of
https://github.com/Qsgs-Fans/FreeKill.git
synced 2024-11-16 03:32:34 +08:00
16 lines
231 B
Bash
Executable File
16 lines
231 B
Bash
Executable File
#!/bin/bash
|
|
|
|
dir=FreeKill-${FK_VER}
|
|
mkdir $dir
|
|
echo Copying
|
|
cp -r ./Freekill/.git $dir
|
|
|
|
cd $dir
|
|
git restore .
|
|
git checkout v$FK_VER
|
|
rm -rf .git lib docker docs android wasm
|
|
cd ..
|
|
|
|
echo Compressing
|
|
tar cfz ${dir}-source.tar.gz $dir
|