Skip to content

Commit

Permalink
use ^git in the tests (#64)
Browse files Browse the repository at this point in the history
as per title, for consistency with the rest of `nu-git-manager`.

Co-authored-by: tests-ci <tests@ci.fake> (yeah i messed up my local config with the CI of #63)
  • Loading branch information
amtoine authored Nov 4, 2023
1 parent a360ea9 commit 8504306
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/mod.nu
Original file line number Diff line number Diff line change
Expand Up @@ -151,9 +151,9 @@ export def list-all-repos-in-store [] {

for repo in $store {
if $repo.is_bare {
git init --bare ($BASE | path join $repo.path)
^git init --bare ($BASE | path join $repo.path)
} else {
git init ($BASE | path join $repo.path)
^git init ($BASE | path join $repo.path)
}
}

Expand Down

0 comments on commit 8504306

Please sign in to comment.