mirror of
https://git.freebsd.org/ports.git
synced 2025-05-07 03:16:44 -04:00
15 lines
436 B
Text
15 lines
436 B
Text
--- bin/rgds2rb.orig 2016-05-16 07:41:38 UTC
|
|
+++ bin/rgds2rb
|
|
@@ -47,9 +47,9 @@ opts = GetoptLong.new(
|
|
|
|
opts.each do |option, argument|
|
|
case option
|
|
- when '--help' : abort usage
|
|
- when '--structs' : structs = argument.split(/\s+/)
|
|
- when '--force' : force = true
|
|
+ when '--help' then abort usage
|
|
+ when '--structs' then structs = argument.split(/\s+/)
|
|
+ when '--force' then force = true
|
|
end
|
|
end
|
|
|