diff --git a/README.md b/README.md index d022a74..78d3e36 100644 --- a/README.md +++ b/README.md @@ -1,11 +1,11 @@ ## Building LibreWolf from source: -First, let's **[download the latest tarball](https://gitlab.com/librewolf-community/browser/source/-/jobs/artifacts/main/raw/librewolf-95.0.2-3.source.tar.gz?job=build-job)**. This tarball is the latest produced by the CI. +First, let's **[download the latest tarball](https://gitlab.com/librewolf-community/browser/source/-/jobs/artifacts/main/raw/librewolf-95.0.2-4.source.tar.gz?job=build-job)**. This tarball is the latest produced by the CI. To download the latest from a script, use wget/curl like this: ``` -wget -O librewolf-95.0.2-3.source.tar.gz https://gitlab.com/librewolf-community/browser/source/-/jobs/artifacts/main/raw/librewolf-95.0.2-3.source.tar.gz?job=build-job -curl -L -o librewolf-95.0.2-3.source.tar.gz https://gitlab.com/librewolf-community/browser/source/-/jobs/artifacts/main/raw/librewolf-95.0.2-3.source.tar.gz?job=build-job +wget -O librewolf-95.0.2-4.source.tar.gz https://gitlab.com/librewolf-community/browser/source/-/jobs/artifacts/main/raw/librewolf-95.0.2-4.source.tar.gz?job=build-job +curl -L -o librewolf-95.0.2-4.source.tar.gz https://gitlab.com/librewolf-community/browser/source/-/jobs/artifacts/main/raw/librewolf-95.0.2-4.source.tar.gz?job=build-job ``` Next, we create ourselves a build folder and extract the tarball. @@ -13,7 +13,7 @@ Next, we create ourselves a build folder and extract the tarball. ``` mkdir build cd build -tar xf ../librewolf-95.0.2-3.source.tar.gz +tar xf ../librewolf-95.0.2-4.source.tar.gz ``` ### build environment diff --git a/scripts/librewolf-patches.py b/scripts/librewolf-patches.py index eb6bf37..f178c01 100755 --- a/scripts/librewolf-patches.py +++ b/scripts/librewolf-patches.py @@ -119,7 +119,7 @@ def librewolf_patches(): # insert the settings pane source (experimental) exec('rm -rf librewolf-pref-pane') - exec('git clone https://gitlab.com/ohfp/librewolf-pref-pane.git') + exec('git clone https://gitlab.com/librewolf-community/browser/librewolf-pref-pane.git') os.chdir('librewolf-pref-pane') exec('git diff 1fee314adc81000294fc0cf3196a758e4b64dace > ../lw/librewolf-pref-pane.patch') os.chdir('..')