Fix incorrect repo path
This commit is contained in:
parent
ca2b623e1a
commit
500ab697f6
1 changed files with 1 additions and 1 deletions
|
@ -1,7 +1,7 @@
|
||||||
#!/bin/env fish
|
#!/bin/env fish
|
||||||
begin
|
begin
|
||||||
set -l target "$argv[1]"
|
set -l target "$argv[1]"
|
||||||
set -l dir "$(status dirname)/.."
|
set -l dir "$(status dirname)/../.."
|
||||||
git clone "$dir" "$target"
|
git clone "$dir" "$target"
|
||||||
cp "$dir/.git/config" "$target/.git/config"
|
cp "$dir/.git/config" "$target/.git/config"
|
||||||
git -C "$dir" diff HEAD | git -C "$target" apply --allow-empty &>/dev/null
|
git -C "$dir" diff HEAD | git -C "$target" apply --allow-empty &>/dev/null
|
||||||
|
|
Loading…
Reference in a new issue