foxgirl-linux/browser/linux/binary_tarball/scripts/2_Download_Source_Code.sh
2019-07-21 00:30:19 -05:00

12 lines
347 B
Bash
Executable file

#!/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;