From e26c39677dde005f5133d0401322d8474393f541 Mon Sep 17 00:00:00 2001 From: Adria Navarro Date: Tue, 2 Jan 2024 12:31:08 +0100 Subject: [PATCH] Update messages --- packages/server/scripts/load/create-many-relationships.js | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/packages/server/scripts/load/create-many-relationships.js b/packages/server/scripts/load/create-many-relationships.js index 13f861ec0b..b81aed3d5d 100755 --- a/packages/server/scripts/load/create-many-relationships.js +++ b/packages/server/scripts/load/create-many-relationships.js @@ -90,9 +90,13 @@ async function run() { if (!appId) { const app = appId ? await getApp(apiKey, appId) : await createApp(apiKey) appId = app._id - } - console.log(`App created: http://localhost:10000/builder/app/${appId}`) + console.log(`App created. Url: http://localhost:10000/builder/app/${appId}`) + } else { + console.log( + `App retrieved. Url: http://localhost:10000/builder/app/${appId}` + ) + } const studentsTable = await getTable(apiKey, appId, "Students")