Skip to content

Commit

Permalink
Fixing error.t in github checks
Browse files Browse the repository at this point in the history
  • Loading branch information
spog committed Nov 17, 2024
1 parent 8594a15 commit ffb79d9
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ help:

.PHONY: test
test:
prove $(prove) $(test)
prove $(prove) -v $(test)

test-all: test docker-tests

Expand Down
3 changes: 2 additions & 1 deletion lib/git-subrepo
Original file line number Diff line number Diff line change
Expand Up @@ -1534,7 +1534,8 @@ assert-repo-is-ready() {
[[ $command =~ ^(help|version|upgrade)$ ]] && return

# We must be inside a git repo:
git rev-parse --git-dir &> /dev/null ||
#orig: git rev-parse --git-dir &> /dev/null ||
git rev-parse --git-dir ||
error "Not inside a git repository."

# Get the original branch and commit:
Expand Down
1 change: 1 addition & 0 deletions test/error.t
Original file line number Diff line number Diff line change
Expand Up @@ -115,6 +115,7 @@ clone-foo-and-bar
)
}

pwd
{
is "$(
cd .git
Expand Down

0 comments on commit ffb79d9

Please sign in to comment.