Skip to content

Commit a2000a3

Browse files
FIX: missing quote (#24049)
1 parent 441a330 commit a2000a3

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lib/tasks/assets.rake

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,9 +29,9 @@ task "assets:precompile:build" do
2929

3030
# Using exec to free up Rails app memory during ember build
3131
if only_ember_precompile_build_remaining
32-
exec "#{compile_command}
32+
exec "#{compile_command}"
3333
elsif only_assets_precompile_remaining
34-
exec " #{compile_command} && SKIP_EMBER_CLI_COMPILE=1 bin/rake assets:precompile"
34+
exec "#{compile_command} && SKIP_EMBER_CLI_COMPILE=1 bin/rake assets:precompile"
3535
else
3636
system compile_command, exception: true
3737
end

0 commit comments

Comments
 (0)