Skip to content

Commit

Permalink
fix(scripts): Fix postinstall script (#477)
Browse files Browse the repository at this point in the history
Removed double && &&, which was causing the postinstall to error
  • Loading branch information
kiley0 committed Oct 25, 2021
1 parent 8ebd622 commit 3902a91
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions source/use_cases/aws-restaurant-management-demo/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
},
"license": "Apache-2.0",
"scripts": {
"postinstall": "cd lib/lambda/service-staff/create-order && && npm install && cd ../../../..",
"postinstall": "cd lib/lambda/service-staff/create-order && npm install && cd ../../../..",
"build": "tsc",
"lint": "eslint -c ../eslintrc.yml --ext=.js,.ts . && tslint --project .",
"lint-fix": "eslint -c ../eslintrc.yml --ext=.js,.ts --fix .",
Expand Down Expand Up @@ -59,4 +59,4 @@
"source-map-support": "^0.5.16",
"typescript": "^4.2.4"
}
}
}

0 comments on commit 3902a91

Please sign in to comment.