Commitad6bd96unknown_key
Merge PR #38: quote EMAIL_FROM in deploy env file
Merge PR #38: quote EMAIL_FROM in deploy env file fix(deploy): quote EMAIL_FROM in /etc/gluecron.env</title> <parameter name="body">Critical hotfix. The deploy script was writing an unquoted EMAIL_FROM value containing `<...>` which bash treated as a file-read redirect when sourcing, aborting every deploy before migrations could run. Discovered when the new vultr-deploy.yml workflow ran its first real deploy. One-character fix: wrap the value in quotes.</parameter> </invoke>
1 file changed+1−1ad6bd9625994e415f48ca8a680d535b199473077
1 changed file+1−1
Modifiedscripts/deploy-crontech.sh+1−1View fileUnifiedSplit
@@ -82,7 +82,7 @@ GIT_REPOS_PATH=${BARE_REPOS}
8282PORT=${PORT}
8383DEMO_SEED_ON_BOOT=1
8484EMAIL_PROVIDER=log
85EMAIL_FROM=gluecron <no-reply@${SITE_DOMAIN}>
85EMAIL_FROM="gluecron <no-reply@${SITE_DOMAIN}>"
8686NODE_ENV=production
8787EOF
8888chmod 600 /etc/gluecron.env
8989