File tree Expand file tree Collapse file tree 2 files changed +6
-2
lines changed
lib/motion/project/target Expand file tree Collapse file tree 2 files changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -146,7 +146,9 @@ def codesign(platform)
146
146
end
147
147
148
148
def clean
149
- system ( "cd #{ @full_path } && #{ environment_variables } bundle exec rake clean" )
149
+ args = ''
150
+ args << " --trace" if App ::VERBOSE
151
+ system ( "cd #{ @full_path } && #{ environment_variables } rake clean #{ args } " )
150
152
end
151
153
152
154
def build_dir ( config , platform )
Original file line number Diff line number Diff line change @@ -119,7 +119,9 @@ def codesign(platform)
119
119
end
120
120
121
121
def clean
122
- system ( "cd #{ @full_path } && #{ environment_variables } bundle exec rake clean" )
122
+ args = ''
123
+ args << " --trace" if App ::VERBOSE
124
+ system ( "cd #{ @full_path } && #{ environment_variables } rake clean #{ args } " )
123
125
end
124
126
125
127
def build_dir ( config , platform )
You can’t perform that action at this time.
0 commit comments