FIX: missing quote (#24049)

This commit is contained in:
Jeff Wong 2023-10-22 19:23:55 -07:00 committed by GitHub
parent 441a330f1e
commit a2000a3559
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -29,9 +29,9 @@ task "assets:precompile:build" do
# Using exec to free up Rails app memory during ember build
if only_ember_precompile_build_remaining
exec "#{compile_command}
exec "#{compile_command}"
elsif only_assets_precompile_remaining
exec " #{compile_command} && SKIP_EMBER_CLI_COMPILE=1 bin/rake assets:precompile"
exec "#{compile_command} && SKIP_EMBER_CLI_COMPILE=1 bin/rake assets:precompile"
else
system compile_command, exception: true
end