mirror of
https://github.com/bisq-network/bisq.git
synced 2025-02-22 22:45:21 +01:00
Merge pull request #2050 from ripcurlx/improve-build-scripts
Add linux workaround in release script and other minor fixes
This commit is contained in:
commit
7eafb3c874
3 changed files with 10 additions and 3 deletions
2
.gitignore
vendored
2
.gitignore
vendored
|
@ -28,4 +28,4 @@ desktop.ini
|
|||
*/target/*
|
||||
*.class
|
||||
deploy
|
||||
releases/*
|
||||
*/releases/*
|
||||
|
|
|
@ -8,7 +8,13 @@ set -e
|
|||
# Edit version
|
||||
version=0.9.0
|
||||
|
||||
dir="/media/sf_vm_shared_ubuntu"
|
||||
sharedDir="/media/sf_vm_shared_ubuntu"
|
||||
|
||||
dir="/home/$USER/Desktop/build"
|
||||
mkdir -p $dir
|
||||
|
||||
cp "$sharedDir/Bisq-$version.jar" "$dir/Bisq-$version.jar"
|
||||
chmod o+rx "$dir/Bisq-$version.jar"
|
||||
|
||||
# Note: fakeroot needs to be installed on Linux
|
||||
|
||||
|
@ -42,5 +48,6 @@ $JAVA_HOME/bin/javapackager \
|
|||
cp "deploy/bisq-$version.deb" "/home/$USER/Desktop/Bisq-64bit-$version.deb"
|
||||
mv "deploy/bisq-$version.deb" "/media/sf_vm_shared_ubuntu/Bisq-64bit-$version.deb"
|
||||
rm -r deploy/
|
||||
rm -r $dir
|
||||
|
||||
cd package/linux
|
||||
|
|
|
@ -38,7 +38,7 @@ cp "$linux64/$deb64" "$target_dir/"
|
|||
|
||||
exe="Bisq-$version.exe"
|
||||
exe64="Bisq-64bit-$version.exe"
|
||||
cp "$win64/bundles/$exe" "$target_dir/$exe64"
|
||||
cp "$win64/$exe" "$target_dir/$exe64"
|
||||
|
||||
cd "$target_dir"
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue