summaryrefslogtreecommitdiff
path: root/src/third_party/mozjs-60/get-sources.sh
blob: 56af3a517f47b2d9415e85cea389c061a8c0f978 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/bin/sh

# how we got the last firefox sources

VERSION=60.3.0
TARBALL=firefox-${VERSION}esr.source.tar.xz
if [ ! -f $TARBALL ]; then
    curl -O "https://ftp.mozilla.org/pub/mozilla.org/firefox/releases/${VERSION}esr/source/$TARBALL"
fi

xzcat $TARBALL | tar -xf-

mv firefox-$VERSION mozilla-release