summaryrefslogtreecommitdiff
path: root/lib/bundler/errors.rb
diff options
context:
space:
mode:
authorSamuel Giddins <segiddins@segiddins.me>2016-09-07 20:47:36 +0200
committerSamuel Giddins <segiddins@segiddins.me>2016-09-07 20:47:36 +0200
commit5a20eb0ef14121c23b3464d99836cd6e0ab85b4a (patch)
treedbbf49c73401116a2a88bed3b780b3d788ffb179 /lib/bundler/errors.rb
parent4818f415d07e547533f48d3f6c59dfda2b73c3fd (diff)
downloadbundler-5a20eb0ef14121c23b3464d99836cd6e0ab85b4a.tar.gz
Always prompt once for sudoseg-prompt-for-sudo
Diffstat (limited to 'lib/bundler/errors.rb')
-rw-r--r--lib/bundler/errors.rb1
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/bundler/errors.rb b/lib/bundler/errors.rb
index 7681ea73ae..dd5782fb3d 100644
--- a/lib/bundler/errors.rb
+++ b/lib/bundler/errors.rb
@@ -52,6 +52,7 @@ module Bundler
class CyclicDependencyError < BundlerError; status_code(21); end
class GemfileLockNotFound < BundlerError; status_code(22); end
class PluginError < BundlerError; status_code(29); end
+ class SudoNotPermittedError < BundlerError; status_code(30); end
class GemfileEvalError < GemfileError; end
class MarshalError < StandardError; end