diff options
Diffstat (limited to 'binary_tarball/scripts/2_Download_Source_Code.sh')
-rwxr-xr-x | binary_tarball/scripts/2_Download_Source_Code.sh | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/binary_tarball/scripts/2_Download_Source_Code.sh b/binary_tarball/scripts/2_Download_Source_Code.sh new file mode 100755 index 0000000..ac022a1 --- /dev/null +++ b/binary_tarball/scripts/2_Download_Source_Code.sh @@ -0,0 +1,11 @@ +#!/bin/sh +printf "\n\n--------------------------------- SOURCE CODE DOWNLOAD --------------------------------------\n"; + +# Setup Script Variables +SOURCE_FOLDER=$1; +_SOURCE_CODE_URL="https://hg.mozilla.org/releases/mozilla-release"; + +# Clone Firefox Source Code +printf "\nCloning Firefox Source Code\n"; +hg clone $_SOURCE_CODE_URL $SOURCE_FOLDER; + |