aboutsummaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/configure_ubuntu.sh5
-rwxr-xr-xscripts/macos_build.sh2
-rw-r--r--[-rwxr-xr-x]scripts/macos_post_build.sh2
3 files changed, 4 insertions, 5 deletions
diff --git a/scripts/configure_ubuntu.sh b/scripts/configure_ubuntu.sh
index a3d07ede..1f9b8e83 100755
--- a/scripts/configure_ubuntu.sh
+++ b/scripts/configure_ubuntu.sh
@@ -7,12 +7,11 @@ set -eu
ROOT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )/"
-cd "${ROOT_DIR}"
+cd ${ROOT_DIR}
#need some openGL stuff
sudo apt install libgl1-mesa-dev
-#install curl incase of fresh vm
-sudo apt install curl
+
mkdir tmp
cd tmp
diff --git a/scripts/macos_build.sh b/scripts/macos_build.sh
index efb7653f..22e2d457 100755
--- a/scripts/macos_build.sh
+++ b/scripts/macos_build.sh
@@ -30,4 +30,4 @@ tar -xvf apng.tar.xz
cp clang_64/plugins/imageformats/libqapng.dylib ../lib
cd ..
-/usr/local/opt/qt/bin/qmake && make -j2
+qmake && make -j2
diff --git a/scripts/macos_post_build.sh b/scripts/macos_post_build.sh
index 25400bf5..50acb408 100755..100644
--- a/scripts/macos_post_build.sh
+++ b/scripts/macos_post_build.sh
@@ -13,7 +13,7 @@ ROOT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )/"
cd ${ROOT_DIR}
# This thing basically does all the work
-/usr/local/opt/qt/bin/macdeployqt ../bin/Attorney_Online.app
+macdeployqt ../bin/Attorney_Online.app
# Need to add the dependencies
cp ../lib/* ../bin/Attorney_Online.app/Contents/Frameworks