add more args to turn off pulling

This commit is contained in:
Yossef Mendelssohn 2013-08-25 12:55:43 -04:00
parent 97c386a836
commit fb99e60ca9

View file

@ -25,8 +25,8 @@ Dir.chdir Pathname.new(__FILE__).realpath + "../.."
# Auto-update code. This is done as early as possible so that changes # Auto-update code. This is done as early as possible so that changes
# to boxen support code or dependencies can be grabbed. # to boxen support code or dependencies can be grabbed.
NO_PULL_ARGS = %w[--no-pull -h -? --help]
unless ENV["BOXEN_NO_PULL"] || ARGV.include?("--no-pull") unless ENV["BOXEN_NO_PULL"] || NO_PULL_ARGS.any? { |arg| ARGV.include?(arg) }
quietly = "> /dev/null 2>&1" quietly = "> /dev/null 2>&1"
if system("which git > /dev/null") && File.directory?(".git") \ if system("which git > /dev/null") && File.directory?(".git") \