Remove 'bundle exec' and add --trace support when cleaning targets

This commit is contained in:
Mark Villacampa
2014-09-01 13:06:54 +02:00
committed by Watson
parent 4023bc4a78
commit 35c0ff09fa
2 changed files with 6 additions and 2 deletions

View File

@@ -146,7 +146,9 @@ PLIST
end
def clean
system("cd #{@full_path} && #{environment_variables} bundle exec rake clean")
args = ''
args << " --trace" if App::VERBOSE
system("cd #{@full_path} && #{environment_variables} rake clean #{args}")
end
def build_dir(config, platform)

View File

@@ -119,7 +119,9 @@ PLIST
end
def clean
system("cd #{@full_path} && #{environment_variables} bundle exec rake clean")
args = ''
args << " --trace" if App::VERBOSE
system("cd #{@full_path} && #{environment_variables} rake clean #{args}")
end
def build_dir(config, platform)