summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorohfp <1813007-ohfp@users.noreply.gitlab.com>2021-02-03 02:26:05 +0100
committerohfp <1813007-ohfp@users.noreply.gitlab.com>2021-02-03 02:26:05 +0100
commit0d68424ed91914a4a696fda13d2ed21f347f5b49 (patch)
tree9143e3a099badf35c674f82a454bf602f4ded668
parentvars (diff)
downloadlibrewolf-debian-0d68424ed91914a4a696fda13d2ed21f347f5b49.tar.gz
librewolf-debian-0d68424ed91914a4a696fda13d2ed21f347f5b49.tar.bz2
librewolf-debian-0d68424ed91914a4a696fda13d2ed21f347f5b49.zip
order matters
-rwxr-xr-xscripts/build-librewolf-dpkg.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/build-librewolf-dpkg.sh b/scripts/build-librewolf-dpkg.sh
index 4ff0b87..ed7fca3 100755
--- a/scripts/build-librewolf-dpkg.sh
+++ b/scripts/build-librewolf-dpkg.sh
@@ -57,6 +57,6 @@ source /root/.cargo/env
cargo install --version 0.16.0 cbindgen
cd ${work_dir}
-dpkg-source -x librewolf_${pkgrel}-${pkgver}.dsc ${output_dir}
+dpkg-source -x librewolf_${pkgver}-${pkgrel}.dsc ${output_dir}
cd ${output_dir}
dpkg-buildpackage -us -uc -d
bgstack15