Rename from Picop to Picopackage

This commit is contained in:
Dan Milne
2025-01-21 08:29:23 +11:00
parent a9d6b85e81
commit 5e153bfb86
13 changed files with 450 additions and 172 deletions

View File

@@ -4,10 +4,10 @@
lib_path = File.expand_path('../lib', __dir__)
$LOAD_PATH.unshift(lib_path) unless $LOAD_PATH.include?(lib_path)
require 'picop'
require 'picopackage'
begin
Picop::CLI.run(ARGV)
Picopackage::CLI.run(ARGV)
rescue => e
warn "Error: #{e.message}"
warn e.backtrace if ENV['DEBUG']