From 500ab697f6ac1135fae1c7c9fa488ef0a0581120 Mon Sep 17 00:00:00 2001 From: Manuel Thalmann Date: Wed, 4 Dec 2024 19:06:32 +0100 Subject: [PATCH] Fix incorrect repo path --- scripts/lib/copy-repo.fish | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/lib/copy-repo.fish b/scripts/lib/copy-repo.fish index 5de5fc73..ff0315ba 100755 --- a/scripts/lib/copy-repo.fish +++ b/scripts/lib/copy-repo.fish @@ -1,7 +1,7 @@ #!/bin/env fish begin set -l target "$argv[1]" - set -l dir "$(status dirname)/.." + set -l dir "$(status dirname)/../.." git clone "$dir" "$target" cp "$dir/.git/config" "$target/.git/config" git -C "$dir" diff HEAD | git -C "$target" apply --allow-empty &>/dev/null