finalise the build script
This commit is contained in:
parent
2befafb5d9
commit
32740e8318
1 changed files with 11 additions and 2 deletions
13
build_x64.sh
13
build_x64.sh
|
@ -5,7 +5,16 @@ mkdir -p product
|
||||||
|
|
||||||
cp ./target/x86_64-pc-windows-gnu/release/idmangler-cli.exe ./product/idmangler-cli-windows-x64.exe
|
cp ./target/x86_64-pc-windows-gnu/release/idmangler-cli.exe ./product/idmangler-cli-windows-x64.exe
|
||||||
cp ./target/x86_64-unknown-linux-gnu/release/idmangler-cli ./product/idmangler-cli-linux-x64
|
cp ./target/x86_64-unknown-linux-gnu/release/idmangler-cli ./product/idmangler-cli-linux-x64
|
||||||
cp -u -p ./{config.json,config_hanafupookie.json,config_singu.json} ./product/
|
cp -u -p ./{config.json,config_hanafupookie.json,config_singu.json,README.md} ./product/
|
||||||
|
|
||||||
|
pkgversion=$(cargo metadata --format-version=1 --no-deps | jq '.packages[] | select(.name == "idmangler-cli") | .version')
|
||||||
|
echo "package version is:"
|
||||||
|
echo $pkgversion
|
||||||
|
balls=${pkgversion::-1}
|
||||||
|
balls2=${balls:1}
|
||||||
|
echo $balls2
|
||||||
|
|
||||||
cd product
|
cd product
|
||||||
zip
|
|
||||||
|
zip "idmangler-windows-x64-${balls2}.zip" config.json config_hanafupookie.json config_singu.json config.md idmangler-cli-windows-x64.exe
|
||||||
|
zip "idmangler-linux-x64-${balls2}.zip" config.json config_hanafupookie.json config_singu.json config.md idmangler-cli-linux-x64
|
||||||
|
|
Loading…
Reference in a new issue