Skip to content

Commit

Permalink
fix: post-create.sh script executable and fixing '&&' npm run build
Browse files Browse the repository at this point in the history
  • Loading branch information
holloway committed Nov 14, 2024
1 parent d168c18 commit 52a8a2c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
},

// Use 'postCreateCommand' to run commands after the container is created.
"postCreateCommand": "./post-create.sh"
"postCreateCommand": "bash .devcontainer/post-create.sh"

// Configure tool-specific properties.
// "customizations": {},
Expand Down
2 changes: 1 addition & 1 deletion client/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"private": true,
"type": "module",
"scripts": {
"build": "npm run generate-content-metadata nuxt build",
"build": "npm run generate-content-metadata && nuxt build",
"dev": "npm run generate-content-metadata && nuxt dev",
"cleanup": "nuxt cleanup",
"preview": "npm run build && nuxt preview",
Expand Down

0 comments on commit 52a8a2c

Please sign in to comment.