summaryrefslogtreecommitdiff
path: root/main.go
diff options
context:
space:
mode:
Diffstat (limited to 'main.go')
-rw-r--r--main.go6
1 files changed, 3 insertions, 3 deletions
diff --git a/main.go b/main.go
index 95c9311..8f52261 100644
--- a/main.go
+++ b/main.go
@@ -141,13 +141,13 @@ func main() {
okExit("patches")
}
if argv.Patch != nil {
- if argv.Patch.Show != "" {
- sendDevelDiff(argv.Patch.Show)
+ if argv.Patch.Show != nil {
+ sendDevelDiff("fixme")
// sendMasterDiff()
okExit("patches")
}
- if argv.Patch.List {
+ if argv.Patch.List != nil {
listPatches()
okExit("patches")
}