From dde93d5f27a959b70b9d504207a760e7c3e1408f Mon Sep 17 00:00:00 2001 From: "Zed A. Shaw" Date: Sat, 3 Dec 2022 05:41:36 -0500 Subject: [PATCH] Wrong spelling on the git option. --- commands/create.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/commands/create.js b/commands/create.js index c75417f..dbecbb7 100644 --- a/commands/create.js +++ b/commands/create.js @@ -23,7 +23,7 @@ export const main = async (target, opts) => { process.exit(1); } catch(error) { // access is stupid, it throws an exception but we want the negative response as a positive outcome - exec_i(`git clone --depth 1 ${BANDO_GIT} ${target} --templates=${opts.templates}`); + exec_i(`git clone --depth 1 ${BANDO_GIT} ${target} --template=${opts.template}`); process.exit(0); } }