summaryrefslogtreecommitdiffstats
path: root/pkg/app
diff options
context:
space:
mode:
authornullishamy <amy.codes@null.net>2022-08-18 18:26:34 +0100
committernullishamy <amy.codes@null.net>2022-08-18 18:26:34 +0100
commit956372cf8a126e62ae64d515368d96c4bb510138 (patch)
tree0818f0449d8ebbd4e717accad64b825a7de57087 /pkg/app
parent290e865584643489cbefbf4c50a5fbc4b299e55b (diff)
Run gofumpt
Diffstat (limited to 'pkg/app')
-rw-r--r--pkg/app/app.go4
1 files changed, 1 insertions, 3 deletions
diff --git a/pkg/app/app.go b/pkg/app/app.go
index d8031b7d5..899325142 100644
--- a/pkg/app/app.go
+++ b/pkg/app/app.go
@@ -156,7 +156,6 @@ func isDirectoryAGitRepository(dir string) (bool, error) {
return info != nil, err
}
-
func openRecentRepo(app *App) bool {
for _, repoDir := range app.Config.GetAppState().RecentRepos {
if isRepo, _ := isDirectoryAGitRepository(repoDir); isRepo {
@@ -218,7 +217,6 @@ func (app *App) setupRepo() (bool, error) {
os.Exit(1)
}
-
if shouldInitRepo {
if err := app.OSCommand.Cmd.New("git init " + initialBranchArg).Run(); err != nil {
return false, err
@@ -248,7 +246,7 @@ func (app *App) setupRepo() (bool, error) {
fmt.Print(app.Tr.BareRepo)
response, _ := bufio.NewReader(os.Stdin).ReadString('\n')
-
+
if shouldOpenRecent := strings.Trim(response, " \r\n") == "y"; !shouldOpenRecent {
os.Exit(0)
}