# File bundler/errors.rb, line 69defactioncase@permission_typewhen:readthen"read from"when:writethen"write to"when:executable, :execthen"execute"else@permission_type.to_sendend
message()click to toggle source
# File bundler/errors.rb, line 78defmessage"There was an error while trying to #{action} `#{@path}`. " \
"It is likely that you need to grant #{@permission_type} permissions " \
"for that path."end