mirror of
https://example.com
synced 2024-11-22 23:16:38 +09:00
chore: put bash strings in quotes
This commit is contained in:
parent
a7076800cf
commit
46d0603fe9
1 changed files with 4 additions and 4 deletions
|
@ -76,8 +76,8 @@ say "Done!\n"
|
|||
say "Start building Firefish."
|
||||
say "It takes some time! Why not brew a cup of cofe?"
|
||||
|
||||
running "NODE_OPTIONS=--max_old_space_size=3072 NODE_ENV=production pnpm run rebuild"
|
||||
NODE_OPTIONS=--max_old_space_size=3072 NODE_ENV=production pnpm run rebuild
|
||||
running "NODE_OPTIONS=\"--max_old_space_size=3072\" NODE_ENV=\"production\" pnpm run rebuild"
|
||||
NODE_OPTIONS="--max_old_space_size=3072" NODE_ENV="production" pnpm run rebuild
|
||||
|
||||
say "Done! We're almost there.\n"
|
||||
|
||||
|
@ -93,8 +93,8 @@ fi
|
|||
## migrate
|
||||
say "Database migration time!"
|
||||
|
||||
running "NODE_OPTIONS=--max_old_space_size=3072 NODE_ENV=production pnpm run migrate"
|
||||
NODE_OPTIONS=--max_old_space_size=3072 NODE_ENV=production pnpm run migrate
|
||||
running "NODE_OPTIONS=\"--max_old_space_size=3072\" NODE_ENV=\"production\" pnpm run migrate"
|
||||
NODE_OPTIONS="--max_old_space_size=3072" NODE_ENV="production" pnpm run migrate
|
||||
|
||||
say "Done!\n"
|
||||
|
||||
|
|
Loading…
Reference in a new issue