You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Oct 27, 2022. It is now read-only.
We originally didn't pass build and deploy commands for build and deploy commands parsed out of Markdown files through a shell was because Go's exec.Cmd interface doesn't automatically do it for us. But just recently found out that we can do something like this:
exec.Command("bash", "-c", "echo hello world")
And we could revise the code tag to include the shell we want to run the commands with instead: {sst-run-bash} instead of {sst-run-bash}. This way, we wouldn't have to expand environment variables ourselves either.
The text was updated successfully, but these errors were encountered:
We originally didn't pass build and deploy commands for build and deploy commands parsed out of Markdown files through a shell was because Go's
exec.Cmd
interface doesn't automatically do it for us. But just recently found out that we can do something like this:And we could revise the code tag to include the shell we want to run the commands with instead:
{sst-run-bash}
instead of{sst-run-bash}
. This way, we wouldn't have to expand environment variables ourselves either.The text was updated successfully, but these errors were encountered: