diff options
Diffstat (limited to 'findNext.go')
| -rw-r--r-- | findNext.go | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/findNext.go b/findNext.go index 8fa6591..c920fd8 100644 --- a/findNext.go +++ b/findNext.go @@ -125,7 +125,11 @@ func findNext() bool { log.Info("cd", wit.GetFullPath()) os.Chdir(wit.GetFullPath()) shell.Exec([]string{"ls", "-l"}) - shell.Exec([]string{"make", "debian-release-force"}) + if argv.Full { + shell.Exec([]string{"make", "debian-release-force"}) + } else { + shell.Exec([]string{"make", "debian-release"}) + } } okExit("") } |
