Skip to content

Commit

Permalink
Merge pull request #464 from hazelops/IZE-605-serverless-v-3-supported
Browse files Browse the repository at this point in the history
Whitespace and escape character fix
  • Loading branch information
AutomationD authored Sep 21, 2022
2 parents 154274f + 6bfc788 commit 494c41c
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions internal/manager/serverless/native.go
Original file line number Diff line number Diff line change
Expand Up @@ -63,11 +63,11 @@ func (sls *Manager) runDeploy(w io.Writer) error {
nvm use %s &&
npx serverless deploy \
--config=%s \
--param="service=%s" \
--param="service=%s" \
--region=%s \
--param="profile=%s" \
--stage=%s \
--verbose \`,
--verbose`,
nvmDir, sls.App.NodeVersion, sls.App.File,
sls.App.Name, sls.App.AwsRegion,
sls.App.AwsProfile, sls.Project.Env)
Expand Down Expand Up @@ -115,7 +115,7 @@ func (sls *Manager) runRemove(w io.Writer) error {
nvm use %s &&
npx serverless remove \
--config=%s \
--param="service=%s" \
--param="service=%s" \
--region=%s \
--param="profile=%s" \
--stage=%s \
Expand All @@ -131,7 +131,7 @@ func (sls *Manager) runRemove(w io.Writer) error {
--config %s \
--service %s \
--verbose \
--region %s \
dion %s \
--profile %s \
--stage %s`,
nvmDir, sls.App.NodeVersion, sls.App.File,
Expand Down

0 comments on commit 494c41c

Please sign in to comment.