# File lib/piston/commands/unlock.rb, line 19defself.detailed_helpusage: unlock DIR [DIR [...]] Unlocked folders are free to be updated to the latest revision when updating.end
help()click to toggle source
# File lib/piston/commands/unlock.rb, line 15defself.help"Undoes the changes enabled by lock"end
Public Instance Methods
run()click to toggle source
# File lib/piston/commands/unlock.rb, line 7defrunraisePiston::CommandError, "No targets to run against"ifargs.empty?svn:propdel, Piston::LOCKED, *argsargs.eachdo|dir|logging_stream.puts"Unlocked '#{dir}'"endend