From cf78ad99a90fe9554fa6b44e98ed82629a94628c Mon Sep 17 00:00:00 2001 From: Prashan Dharmasena <163016611+prashanDYDX@users.noreply.github.com> Date: Thu, 25 Jul 2024 19:48:32 -0400 Subject: [PATCH] =?UTF-8?q?Update=20install=20local=20abacus=20script=20to?= =?UTF-8?q?=20use=20relative=20references=20instead=E2=80=A6=20(#205)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit … of absolute. --- scripts/build_abacus_local.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/build_abacus_local.sh b/scripts/build_abacus_local.sh index ac38d3d0..0d391906 100755 --- a/scripts/build_abacus_local.sh +++ b/scripts/build_abacus_local.sh @@ -9,8 +9,8 @@ # The script will update both the v4-abacus and v4-native-android repositories, so please make sure # you clean-up/revert the changes after you are done with the local testing -ABACUS_DIR=~/v4-abacus -ANDROID_DIR=~/v4-native-android +ANDROID_DIR=$(pwd) +ABACUS_DIR=$(pwd)/../v4-abacus # Create a random version number NEW_VERSION="local.$(date +%s)"