mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-12-26 21:33:03 +03:00
nix-prefetch-git: create parent directories
This commit is contained in:
parent
ae0a64cf2c
commit
6ea0ae58af
@ -343,7 +343,7 @@ fi
|
|||||||
|
|
||||||
if test -n "$builder"; then
|
if test -n "$builder"; then
|
||||||
test -n "$out" -a -n "$url" -a -n "$rev" || usage
|
test -n "$out" -a -n "$url" -a -n "$rev" || usage
|
||||||
mkdir $out
|
mkdir -p $out
|
||||||
clone_user_rev "$out" "$url" "$rev"
|
clone_user_rev "$out" "$url" "$rev"
|
||||||
else
|
else
|
||||||
if test -z "$hashType"; then
|
if test -z "$hashType"; then
|
||||||
@ -368,7 +368,7 @@ else
|
|||||||
trap "rm -rf \"$tmpPath\"" EXIT
|
trap "rm -rf \"$tmpPath\"" EXIT
|
||||||
|
|
||||||
tmpFile="$tmpPath/$(url_to_name "$url" "$rev")"
|
tmpFile="$tmpPath/$(url_to_name "$url" "$rev")"
|
||||||
mkdir "$tmpFile"
|
mkdir -p "$tmpFile"
|
||||||
|
|
||||||
# Perform the checkout.
|
# Perform the checkout.
|
||||||
clone_user_rev "$tmpFile" "$url" "$rev"
|
clone_user_rev "$tmpFile" "$url" "$rev"
|
||||||
|
Loading…
Reference in New Issue
Block a user