From a30b02d4e5c4fd57187131fd27f087d69d8baf45 Mon Sep 17 00:00:00 2001 From: Ali Date: Sun, 20 Oct 2024 14:44:42 +0200 Subject: [PATCH] Update the rebuild script --- e2e/scripts/rebuild.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/e2e/scripts/rebuild.js b/e2e/scripts/rebuild.js index 7265b8df..9f2e5d71 100644 --- a/e2e/scripts/rebuild.js +++ b/e2e/scripts/rebuild.js @@ -49,7 +49,7 @@ async function execa(command, file) { async function processFilesAndRunMake(files, pwd) { // Loop through each file and execute the external command for (const file of files) { - const command = `${pwd}/artifacts/fireback/f gen gof --no-cache true --def ${pwd}/${file} --relative-to ${pwd} --gof-module github.com/torabian/fireback`; + const command = `${pwd}/app gen gof --no-cache true --def ${pwd}/${file} --relative-to ${pwd} --gof-module github.com/torabian/fireback`; await execa(command, file); } }