aboutsummaryrefslogtreecommitdiffstats
path: root/lib/bundler.rb
diff options
context:
space:
mode:
authorAndre Arko <andre@arko.net>2014-01-26 14:34:25 -0800
committerAndre Arko <andre@arko.net>2014-01-26 14:34:25 -0800
commit2f15c3c9f501320d87e7ae7b6f9e7e8f29a0534d (patch)
treedd175bae74ff98cb7f0bc49a802c7e46e136191b /lib/bundler.rb
parentbca814207a1bf3d217c0acc0aedc0ff5761127cb (diff)
downloadbundler-2f15c3c9f501320d87e7ae7b6f9e7e8f29a0534d.tar.gz
remove exit code conflict with VersionConflict
Diffstat (limited to 'lib/bundler.rb')
-rw-r--r--lib/bundler.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/bundler.rb b/lib/bundler.rb
index c20e9866..da8d8715 100644
--- a/lib/bundler.rb
+++ b/lib/bundler.rb
@@ -55,7 +55,7 @@ module Bundler
class GemNotFound < BundlerError; status_code(7) ; end
class GemfileError < BundlerError; status_code(4) ; end
class InstallError < BundlerError; status_code(5) ; end
- class InstallHookError < BundlerError; status_code(6) ; end
+ class InstallHookError < BundlerError; status_code(8) ; end
class PathError < BundlerError; status_code(13) ; end
class GitError < BundlerError; status_code(11) ; end
class DeprecatedError < BundlerError; status_code(12) ; end