From f31b10b89d33201c454c01caa744d1e630819191 Mon Sep 17 00:00:00 2001 From: ohfp <1813007-ohfp@users.noreply.gitlab.com> Date: Sat, 28 Mar 2020 23:18:19 +0100 Subject: [PATCH] call things $srcdir --- binary_tarball/scripts/3_Configure_Source_Code.sh | 8 ++++---- binary_tarball/scripts/4_Build_Binary_Tarball.sh | 6 +++--- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/binary_tarball/scripts/3_Configure_Source_Code.sh b/binary_tarball/scripts/3_Configure_Source_Code.sh index 4c26b5d..3927dec 100755 --- a/binary_tarball/scripts/3_Configure_Source_Code.sh +++ b/binary_tarball/scripts/3_Configure_Source_Code.sh @@ -2,20 +2,20 @@ printf "\n\n------------------------------ FINAL PREBUILD CONFIGURATION ---------------------------------\n"; # Setup Script Variables -SOURCE_CODE_FOLDER=$1; +srcdir=$1; CI_PROJECT_DIR=${CI_PROJECT_DIR:-$(realpath $(dirname $0)/../../)} _COMMON_REPO='https://gitlab.com/librewolf-community/browser/common.git'; -_MOZBUILD=$SOURCE_CODE_FOLDER/../mozbuild +_MOZBUILD=$srcdir/../mozbuild mkdir -p ${_MOZBUILD} # Copy Source Code Changes to Source Code printf "\nCopying branding and source code changes to firefox source code\n"; git clone $_COMMON_REPO common; -cp -r common/source_files/* $SOURCE_CODE_FOLDER/; +cp -r common/source_files/* $srcdir/; rm -rf common; -cd $SOURCE_CODE_FOLDER +cd $srcdir cat >../mozconfig <