diff --git a/bin/dep b/bin/dep index bd6c73a..f836baf 100755 --- a/bin/dep +++ b/bin/dep @@ -126,6 +126,10 @@ module Dep def run(cmd) puts " #{cmd}" `#{cmd}` + + if $?.exitstatus != 0 + exit($?.exitstatus) + end end end end