mastodon.updateScript: use correct input for nix-prefetch-git, better formatting

This commit is contained in:
Kerstin Humm 2022-04-09 02:05:44 +02:00 committed by Kerstin
parent 6a441683a0
commit 15313692cd
2 changed files with 24 additions and 24 deletions

View file

@ -6,12 +6,12 @@
, bundix
, coreutils
, diffutils
, nix-prefetch-github
, nix-prefetch-git
, gnused
, jq
}:
let
binPath = lib.makeBinPath [ yarn2nix bundix coreutils diffutils nix-prefetch-github gnused jq ];
binPath = lib.makeBinPath [ yarn2nix bundix coreutils diffutils nix-prefetch-git gnused jq ];
in
runCommand "mastodon-update-script"
{

View file

@ -9,29 +9,29 @@ while [[ $# -gt 0 ]]; do
case $key in
--url)
URL="$2"
shift # past argument
shift # past value
;;
URL="$2"
shift # past argument
shift # past value
;;
--ver)
VERSION="$2"
shift # past argument
shift # past value
;;
--rev)
REVISION="$2"
shift # past argument
shift # past value
;;
--patches)
PATCHES="$2"
shift # past argument
shift # past value
;;
*) # unknown option
POSITIONAL+=("$1")
shift # past argument
;;
VERSION="$2"
shift # past argument
shift # past value
;;
--rev)
REVISION="$2"
shift # past argument
shift # past value
;;
--patches)
PATCHES="$2"
shift # past argument
shift # past value
;;
*) # unknown option
POSITIONAL+=("$1")
shift # past argument
;;
esac
done