summaryrefslogtreecommitdiff
path: root/findNext.go
diff options
context:
space:
mode:
Diffstat (limited to 'findNext.go')
-rw-r--r--findNext.go6
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("")
}