about summary refs log tree commit diff
path: root/pkgs/applications/networking/browsers/floorp
diff options
context:
space:
mode:
authorChristoph Heiss <christoph@c8h4.io>2024-04-14 21:42:37 +0200
committergithub-actions[bot] <github-actions[bot]@users.noreply.github.com>2024-04-16 09:32:54 +0000
commit111ba7824a04c3e4ac6c93c66068d4dea588e6ec (patch)
treea5bb8fa630dcfc4d42875fe636a5069fb79d516d /pkgs/applications/networking/browsers/floorp
parent69be1d097dd9a8422cfc4e89811304fb40f22626 (diff)
floorp: update.sh: fix duplicate double quoting when replacing hash
Signed-off-by: Christoph Heiss <christoph@c8h4.io>
(cherry picked from commit 271a0e91e83a729fa5d5ff89c284f30424cb21c0)
Diffstat (limited to 'pkgs/applications/networking/browsers/floorp')
-rwxr-xr-xpkgs/applications/networking/browsers/floorp/update.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/applications/networking/browsers/floorp/update.sh b/pkgs/applications/networking/browsers/floorp/update.sh
index 08216123c54c0..4f367f29e7762 100755
--- a/pkgs/applications/networking/browsers/floorp/update.sh
+++ b/pkgs/applications/networking/browsers/floorp/update.sh
@@ -19,7 +19,7 @@ updateBaseVersion() {
 
 updateHash() {
     local hash
-    hash=$(nix-prefetch-github --fetch-submodules --rev "v$1" $owner $repo | jq .hash)
+    hash=$(nix-prefetch-github --fetch-submodules --rev "v$1" $owner $repo | jq -r .hash)
     sed -i "s|hash = \"[a-zA-Z0-9\/+-=]*\";|hash = \"$hash\";|g" "$dirname/default.nix"
 }