Merge pull request #21064 from taku0/firefox-bin-fix-update-script

firefox-bin: fix updateScript

authored by Michael Raskin and committed by GitHub d009ac1c 37c10c42

+2 -2
+2 -2
pkgs/applications/networking/browsers/firefox-bin/default.nix
··· 223 223 tr " " ":"`; do 224 224 # create an entry for every locale 225 225 cat >> $tmpfile <<EOF 226 - { url = "$url$version/$arch/`echo $line | cut -d":" -f3`";" 226 + { url = "$url$version/`echo $line | cut -d":" -f3`"; 227 227 locale = "`echo $line | cut -d":" -f3 | sed "s/$arch\///" | sed "s/\/.*//"`"; 228 228 arch = "$arch"; 229 229 sha512 = "`echo $line | cut -d":" -f1`"; ··· 236 236 } 237 237 EOF 238 238 239 - cat $tmpfile > ${if isBeta then "beta_" else ""}sources.nix 239 + mv $tmpfile ${if isBeta then "beta_" else ""}sources.nix 240 240 241 241 popd 242 242 '';