aboutsummaryrefslogtreecommitdiff
path: root/browser/linux/build.sh
diff options
context:
space:
mode:
authorBeatLink <beatlink@protonmail.com>2019-07-14 13:18:06 -0500
committerBeatLink <beatlink@protonmail.com>2019-07-14 13:18:06 -0500
commitb77789e7bdb65be4fba109aba1f8149fce68797f (patch)
tree3aff68d49dad30f27eae306f3952a7737efc7d62 /browser/linux/build.sh
parentMinor formatting (diff)
downloadlibrewolf-linux-b77789e7bdb65be4fba109aba1f8149fce68797f.tar.gz
librewolf-linux-b77789e7bdb65be4fba109aba1f8149fce68797f.tar.bz2
librewolf-linux-b77789e7bdb65be4fba109aba1f8149fce68797f.zip
Add launch script and precreate settings dir
Diffstat (limited to 'browser/linux/build.sh')
-rwxr-xr-xbrowser/linux/build.sh3
1 files changed, 3 insertions, 0 deletions
diff --git a/browser/linux/build.sh b/browser/linux/build.sh
index 4499453..5399dfe 100755
--- a/browser/linux/build.sh
+++ b/browser/linux/build.sh
@@ -123,6 +123,9 @@ tar -xvf ./$PACKAGE_FILE;
# Adds the librefox config files to the packaged tarball
printf "\nCopying librewolf settings to extracted binary tarball\n";
cp -r $REPOSITORY_FOLDER/settings ./librewolf/settings;
+cp $SCRIPT_FOLDER/resources/launch_librewolf.sh ./librewolf/launch_librewolf.sh
+mkdir -p $INSTALL_FOLDER/defaults/pref/;
+mkdir -p $INSTALL_FOLDER/distribution/;
printf "\n\n--------------------------------- BINARY TARBALL RECREATION --------------------------------------\n";
bgstack15