mirror of
https://github.com/gosticks/brew.git
synced 2026-08-12 12:40:22 +00:00
9 lines
147 B
Ruby
9 lines
147 B
Ruby
# typed: strict
|
|
# frozen_string_literal: true
|
|
|
|
require "optparse"
|
|
|
|
OptionParser.accept Pathname do |path|
|
|
Pathname(path).expand_path if path
|
|
end
|