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
|
@ -10,6 +10,8 @@ all = false
|
||||||
force = false
|
force = false
|
||||||
opt = false
|
opt = false
|
||||||
services = false
|
services = false
|
||||||
|
receipts = false
|
||||||
|
gitconfig = false
|
||||||
|
|
||||||
OptionParser.new do |o|
|
OptionParser.new do |o|
|
||||||
o.banner = "Remove most traces of Boxen from your machine."
|
o.banner = "Remove most traces of Boxen from your machine."
|
||||||
|
@ -24,7 +26,7 @@ OptionParser.new do |o|
|
||||||
|
|
||||||
o.parse!
|
o.parse!
|
||||||
|
|
||||||
abort o.to_s unless all || opt || services
|
abort o.to_s unless all || opt || services || receipts || gitconfig
|
||||||
end
|
end
|
||||||
|
|
||||||
unless force
|
unless force
|
||||||
|
|
Loading…
Reference in a new issue