Skip to content

Commit

Permalink
v0.2.11
Browse files Browse the repository at this point in the history
  • Loading branch information
BlackRam-oss committed Nov 1, 2024
1 parent 5b785b9 commit ad9c129
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "create-pixi-vn",
"description": "Create a new Pixi’VN project",
"version": "0.2.10",
"version": "0.2.11",
"type": "module",
"license": "GPL-3.0",
"author": "DRincs-Productions",
Expand Down
7 changes: 5 additions & 2 deletions src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -327,8 +327,11 @@ async function init() {
return
}
try {
const resolved = await which(ide)
spawn(resolved, [root], { detached: true })
// const resolved = await which(ide)
// spawn(resolved, [root], { detached: true })
await which(ide)
console.log(`\nOpening in ${ide}...`)
spawn.sync(ide, [root], { stdio: 'inherit' })
} catch (error) {
console.error(
`Could not open project using ${ide}, since ${ide} was not in your PATH`,
Expand Down

0 comments on commit ad9c129

Please sign in to comment.