mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-12-27 13:57:10 +03:00
Merge pull request #10998 from andrewrynhard/master
Add help flag to nix-prefetch-git
This commit is contained in:
commit
9c571a98ed
@ -24,6 +24,22 @@ else
|
|||||||
leaveDotGit=true
|
leaveDotGit=true
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
usage(){
|
||||||
|
echo >&2 "syntax: nix-prefetch-git [options] [URL [REVISION [EXPECTED-HASH]]]
|
||||||
|
|
||||||
|
Options:
|
||||||
|
--out path Path where the output would be stored.
|
||||||
|
--url url Any url understand by 'git clone'.
|
||||||
|
--rev ref Any sha1 or references (such as refs/heads/master)
|
||||||
|
--hash h Expected hash.
|
||||||
|
--deepClone Clone submodules recursively.
|
||||||
|
--no-deepClone Do not clone submodules.
|
||||||
|
--leave-dotGit Keep the .git directories.
|
||||||
|
--fetch-submodules Fetch submodules.
|
||||||
|
--builder Clone as fetchgit does, but url, rev, and out option are mandatory.
|
||||||
|
"
|
||||||
|
exit 1
|
||||||
|
}
|
||||||
|
|
||||||
argi=0
|
argi=0
|
||||||
argfun=""
|
argfun=""
|
||||||
@ -40,6 +56,7 @@ for arg; do
|
|||||||
--leave-dotGit) leaveDotGit=true;;
|
--leave-dotGit) leaveDotGit=true;;
|
||||||
--fetch-submodules) fetchSubmodules=true;;
|
--fetch-submodules) fetchSubmodules=true;;
|
||||||
--builder) builder=true;;
|
--builder) builder=true;;
|
||||||
|
--help) usage; exit;;
|
||||||
*)
|
*)
|
||||||
argi=$(($argi + 1))
|
argi=$(($argi + 1))
|
||||||
case $argi in
|
case $argi in
|
||||||
@ -61,23 +78,6 @@ for arg; do
|
|||||||
fi
|
fi
|
||||||
done
|
done
|
||||||
|
|
||||||
usage(){
|
|
||||||
echo >&2 "syntax: nix-prefetch-git [options] [URL [REVISION [EXPECTED-HASH]]]
|
|
||||||
|
|
||||||
Options:
|
|
||||||
--out path Path where the output would be stored.
|
|
||||||
--url url Any url understand by 'git clone'.
|
|
||||||
--rev ref Any sha1 or references (such as refs/heads/master)
|
|
||||||
--hash h Expected hash.
|
|
||||||
--deepClone Clone submodules recursively.
|
|
||||||
--no-deepClone Do not clone submodules.
|
|
||||||
--leave-dotGit Keep the .git directories.
|
|
||||||
--fetch-submodules Fetch submodules.
|
|
||||||
--builder Clone as fetchgit does, but url, rev, and out option are mandatory.
|
|
||||||
"
|
|
||||||
exit 1
|
|
||||||
}
|
|
||||||
|
|
||||||
if test -z "$url"; then
|
if test -z "$url"; then
|
||||||
usage
|
usage
|
||||||
fi
|
fi
|
||||||
|
Loading…
Reference in New Issue
Block a user