blob: 690208a389cb82e14d12585729f92d9eb9d71544 (
plain)
1
2
3
4
5
6
7
|
#!/bin/sh
if [ "$JPM_FX_DEBUG" = "1" ]; then
fx-download --branch nightly -c prerelease --host ftp.mozilla.org ../firefox --debug
else
fx-download --branch nightly -c prerelease --host ftp.mozilla.org ../firefox
fi
|