Skip to content

Commit 411f527

Browse files
Apply suggestions from code review
Co-authored-by: Torsten Dittmann <[email protected]>
1 parent 6021ec8 commit 411f527

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

templates/cli/lib/commands/pull.js.twig

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ const pullFunctions = async ({ code }) => {
102102
}
103103

104104
if(allowCodePull) {
105-
log(`Pulling active deployment's code ...`);
105+
log("Pulling active deployment's code ...");
106106

107107
const compressedFileName = `${func['$id']}-${+new Date()}.tar.gz`
108108
await functionsDownloadDeployment({
@@ -275,7 +275,7 @@ pull
275275
.command("function")
276276
.alias("functions")
277277
.description("Pulling your {{ spec.title|caseUcfirst }} cloud function")
278-
.option(`--no-code`, `Don't pull the function's code`)
278+
.option("--no-code", "Don't pull the function's code")
279279
.action(actionRunner(pullFunctions))
280280

281281
pull

templates/cli/lib/questions.js.twig

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -262,7 +262,7 @@ const questionsPullFunctionsCode = [
262262
{
263263
type: "confirm",
264264
name: "override",
265-
message: 'Do you want to pull source code of active deployment?'
265+
message: "Do you want to pull source code of active deployment?"
266266
},
267267
];
268268

0 commit comments

Comments
 (0)