Skip to content

Commit

Permalink
fix: fix typo in container namespace
Browse files Browse the repository at this point in the history
  • Loading branch information
KP2048 committed Feb 17, 2023
1 parent a4ee84d commit 2486749
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down

0 comments on commit 2486749

Please sign in to comment.