From 24867495f8c87f897f292e83680e02f153521890 Mon Sep 17 00:00:00 2001 From: Witherking25 Date: Fri, 17 Feb 2023 13:40:19 -0500 Subject: [PATCH] fix: fix typo in container namespace --- src/index.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/index.ts b/src/index.ts index 1cdeeba..30a365e 100644 --- a/src/index.ts +++ b/src/index.ts @@ -91,7 +91,7 @@ function build(args: yargs.ArgumentsCamelCase<{ dev: boolean }>) } else throw new Error('podman or builder not found') //pull builder images - child_process.execSync(`${container} pull ghcr.io/EmuDeck/builder:latest`) + child_process.execSync(`${container} pull ghcr.io/emudeck/builder:latest`) child_process.execSync(`${container} pull ghcr.io/steamdeckhomebrew/holo-base:latest`) //backend @@ -145,7 +145,7 @@ function build(args: yargs.ArgumentsCamelCase<{ dev: boolean }>) console.log(`Plugin ${plugin.name} does not have a backend`) } //frontend - child_process.execSync(`${container} run --rm -i -e NODE_ENV="${args.dev ? 'development' : 'production'}" -v "${process.cwd()}":/plugin -v "${path.join(process.cwd(), 'build', plugin.name)}":/out ghcr.io/EmuDeck/builder:latest`) + child_process.execSync(`${container} run --rm -i -e NODE_ENV="${args.dev ? 'development' : 'production'}" -v "${process.cwd()}":/plugin -v "${path.join(process.cwd(), 'build', plugin.name)}":/out ghcr.io/emudeck/builder:latest`) console.log(` Built ${plugin.name} frontend`) //zip