From 9d2689e291188d958fd65a92ccea34cc916439b7 Mon Sep 17 00:00:00 2001 From: Troplo Date: Fri, 29 Jul 2022 23:03:07 +1000 Subject: [PATCH] Update index.js --- cli/index.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cli/index.js b/cli/index.js index 1dfa9df..0a08bd1 100644 --- a/cli/index.js +++ b/cli/index.js @@ -237,7 +237,7 @@ async function configureDotEnv() { async function init() { while (true) { const option = await input.select(`Please select an option`, [ - "Setup", + "First-time setup", "Create user", "Run migrations", "Update/create config file", @@ -246,7 +246,7 @@ async function init() { "Exit" ]) - if (option === "Setup") { + if (option === "First-time setup") { // run yarn install in ../backend console.log("Running yarn install") execSync("cd ../backend && yarn install --frozen-lockfile", () => {