diff options
author | B. Stack <bgstack15@gmail.com> | 2023-05-07 19:31:09 -0400 |
---|---|---|
committer | B. Stack <bgstack15@gmail.com> | 2023-05-07 19:31:09 -0400 |
commit | 9768c6707978ebb0392d4fd9acac08a79888a872 (patch) | |
tree | 087fe6ea2411766b2d76545dcc19a0de113a5239 /scripts/prep-librewolf-dpkg.sh | |
parent | add set -x (diff) | |
download | librewolf-debian-9768c6707978ebb0392d4fd9acac08a79888a872.tar.gz librewolf-debian-9768c6707978ebb0392d4fd9acac08a79888a872.tar.bz2 librewolf-debian-9768c6707978ebb0392d4fd9acac08a79888a872.zip |
re-add missing version string
Diffstat (limited to 'scripts/prep-librewolf-dpkg.sh')
-rwxr-xr-x | scripts/prep-librewolf-dpkg.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/prep-librewolf-dpkg.sh b/scripts/prep-librewolf-dpkg.sh index 9c0815b..965d3ea 100755 --- a/scripts/prep-librewolf-dpkg.sh +++ b/scripts/prep-librewolf-dpkg.sh @@ -81,7 +81,7 @@ test -z "${SKIP_EXTRACT}" && { # Download git sources test -z "${SKIP_GIT}" && { - git clone "${librewolf_source_url}" ${git_source_dir}/source || : ; ( cd "${git_source_dir}/source" ; git checkout master || git checkout main ; git pull ; git checkout "${librewolf_version}" ; ) + git clone "${librewolf_source_url}" ${git_source_dir}/source || : ; ( cd "${git_source_dir}/source" ; git checkout master || git checkout main ; git pull ; git checkout "${source_version}" ; ) git clone "${librewolf_settings_url}" ${git_source_dir}/settings || : ; ( cd "${git_source_dir}/settings" ; git checkout master || git checkout main ; git pull ; ) } |