Skip to content

Commit

Permalink
tools: be verbose, when a git commands that v up executes fails
Browse files Browse the repository at this point in the history
  • Loading branch information
spytheman committed May 2, 2024
1 parent 4431778 commit 0459519
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions cmd/tools/vup.v
Expand Up @@ -159,6 +159,7 @@ fn (app App) git_command(command string) {
os.execute_or_exit(command)
}
if git_result.exit_code != 0 {
eprintln('Failed git command: ${command}')
eprintln(git_result.output)
exit(1)
}
Expand Down

0 comments on commit 0459519

Please sign in to comment.