7 lines
202 B
Text
7 lines
202 B
Text
|
|
#!/usr/bin/env ruby
|
||
|
|
require_relative "../config/boot"
|
||
|
|
require "bundler/audit/cli"
|
||
|
|
|
||
|
|
ARGV.concat %w[ --config config/bundler-audit.yml ] if ARGV.empty? || ARGV.include?("check")
|
||
|
|
Bundler::Audit::CLI.start
|