Updated scripts to allow for the use of the --receipts and --gitconfig flags
This commit is contained in:
parent
08009e9b07
commit
4e143c370f
1 changed files with 7 additions and 5 deletions
12
script/nuke
12
script/nuke
|
@ -6,10 +6,12 @@ unless ENV["USER"] == "root"
|
|||
exec "sudo", $0, *ARGV
|
||||
end
|
||||
|
||||
all = false
|
||||
force = false
|
||||
opt = false
|
||||
services = false
|
||||
all = false
|
||||
force = false
|
||||
opt = false
|
||||
services = false
|
||||
receipts = false
|
||||
gitconfig = false
|
||||
|
||||
OptionParser.new do |o|
|
||||
o.banner = "Remove most traces of Boxen from your machine."
|
||||
|
@ -24,7 +26,7 @@ OptionParser.new do |o|
|
|||
|
||||
o.parse!
|
||||
|
||||
abort o.to_s unless all || opt || services
|
||||
abort o.to_s unless all || opt || services || receipts || gitconfig
|
||||
end
|
||||
|
||||
unless force
|
||||
|
|
Loading…
Reference in a new issue