mirror of
https://github.com/gosticks/brew.git
synced 2026-08-17 15:10:22 +00:00
8 lines
131 B
Ruby
8 lines
131 B
Ruby
# frozen_string_literal: true
|
|
|
|
require "optparse"
|
|
|
|
OptionParser.accept Pathname do |path|
|
|
Pathname(path).expand_path if path
|
|
end
|