Method: Pa::Cmd::ClassMethods#touch_f

Defined in:
lib/pa/cmd.rb

#touch_f(*paths, o = {}) ⇒ nil

touch force

Returns:

  • (nil)

See Also:



134
135
136
137
138
# File 'lib/pa/cmd.rb', line 134

def touch_f(*args)
  paths, o = Util.extract_options(args)
  o[:force] = true
  _touch(paths, o) 
end