We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 356a0a3 commit 8c0b4edCopy full SHA for 8c0b4ed
index.js
@@ -49,7 +49,7 @@ async function installServerlessAndPlugins() {
49
// }
50
51
// Runs Serverless deploy including any provided args
52
-async function runServerlessDeploy(setCredentials) {
+async function runServerlessDeploy() {
53
await exeq(
54
`echo Running sudo sls deploy ${ARGS}...`,
55
`sudo sls config credentials --provider aws --key ${AWS_ACCESS_KEY_ID} --secret ${AWS_SECRET_ACCESS_KEY} ${ARGS}`,
@@ -63,7 +63,7 @@ async function handler() {
63
await installDocker()
64
await installServerlessAndPlugins()
65
// var setCredentials = await setServerlessCredentials()
66
- await runServerlessDeploy(setCredentials)
+ await runServerlessDeploy()
67
}
68
69
// Main function
0 commit comments