foxgirl-linux/binary_tarball/scripts/2_Download_Source_Code.sh

12 lines
347 B
Bash
Raw Normal View History

#!/bin/sh
2019-07-21 07:30:19 +02:00
printf "\n\n--------------------------------- SOURCE CODE DOWNLOAD --------------------------------------\n";
2019-07-21 07:30:19 +02:00
# Setup Script Variables
SOURCE_FOLDER=$1;
_SOURCE_CODE_URL="https://hg.mozilla.org/releases/mozilla-release";
2019-07-21 07:30:19 +02:00
# Clone Firefox Source Code
printf "\nCloning Firefox Source Code\n";
2019-07-21 07:30:19 +02:00
hg clone $_SOURCE_CODE_URL $SOURCE_FOLDER;