File tree 1 file changed +4
-4
lines changed
1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -106,8 +106,8 @@ func addRule(ctx *cli.Context) {
106
106
}
107
107
108
108
// If from EPG is specified, make sure from network is specified too
109
- if ctx .String ("from-group" ) != "" && ctx .String ("from-network" ) = = "" {
110
- errExit (ctx , exitHelp , "from-group argument requires -from-network too " , false )
109
+ if ctx .String ("from-group" ) != "" && ctx .String ("from-network" ) ! = "" {
110
+ errExit (ctx , exitHelp , "Can't specify both from-group argument and -from-network " , false )
111
111
}
112
112
} else if dir == "out" {
113
113
if ctx .String ("from-group" ) != "" {
@@ -121,8 +121,8 @@ func addRule(ctx *cli.Context) {
121
121
}
122
122
123
123
// If to EPG is specified, make sure to network is specified too
124
- if ctx .String ("to-group" ) != "" && ctx .String ("to-network" ) = = "" {
125
- errExit (ctx , exitHelp , "-to-group argument requires -to-network too " , false )
124
+ if ctx .String ("to-group" ) != "" && ctx .String ("to-network" ) ! = "" {
125
+ errExit (ctx , exitHelp , "Can't specify both -to-group and -to-network" , false )
126
126
}
127
127
} else {
128
128
errExit (ctx , exitHelp , "Unknown direction" , false )
You can’t perform that action at this time.
0 commit comments