Fixed syntax error

This commit is contained in:
Leon Mika 2024-07-13 11:08:27 +10:00
parent ce4e5a69eb
commit 70c024b387
1 changed files with 2 additions and 2 deletions

View File

@ -74,7 +74,7 @@ func (s *Services) PushRepository() error {
}
log.Println("SSH connection good. Pushing repository")
if err := runCmd(fmt.Sprintf(`git remote add dokku '%v'`, remoteUrl); err != nil {
if err := runCmd(fmt.Sprintf(`git remote add dokku '%v'`, remoteUrl)); err != nil {
return err
}