mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
parent
fd7c773387
commit
0b80408b24
4 changed files with 4 additions and 4 deletions
|
@ -6,7 +6,7 @@ include FileUtils
|
|||
APP_ROOT = File.expand_path('..', __dir__)
|
||||
|
||||
def system!(*args)
|
||||
system(*args) || abort("\n== Command #{args} failed ==")
|
||||
system(*args, exception: true)
|
||||
end
|
||||
|
||||
chdir APP_ROOT do
|
||||
|
|
|
@ -6,7 +6,7 @@ include FileUtils
|
|||
APP_ROOT = File.expand_path('..', __dir__)
|
||||
|
||||
def system!(*args)
|
||||
system(*args) || abort("\n== Command #{args} failed ==")
|
||||
system(*args, exception: true)
|
||||
end
|
||||
|
||||
chdir APP_ROOT do
|
||||
|
|
|
@ -6,7 +6,7 @@ include FileUtils
|
|||
APP_ROOT = File.expand_path('..', __dir__)
|
||||
|
||||
def system!(*args)
|
||||
system(*args) || abort("\n== Command #{args} failed ==")
|
||||
system(*args, exception: true)
|
||||
end
|
||||
|
||||
chdir APP_ROOT do
|
||||
|
|
|
@ -6,7 +6,7 @@ include FileUtils
|
|||
APP_ROOT = File.expand_path('..', __dir__)
|
||||
|
||||
def system!(*args)
|
||||
system(*args) || abort("\n== Command #{args} failed ==")
|
||||
system(*args, exception: true)
|
||||
end
|
||||
|
||||
chdir APP_ROOT do
|
||||
|
|
Loading…
Reference in a new issue