Skip to content

Commit 06aa785

Browse files
authored
fix: run postinstall script explicitly with bash
Currently, Windows default script-shell (cmd) fails to run the postinstall script. This commit fixes the problem by running postinstall.sh explicitly with the default bash executable of the OS. Related: #1397
1 parent 67b23aa commit 06aa785

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ci/build/build-release.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ bundle_code_server() {
4848
{
4949
"commit": "$(git rev-parse HEAD)",
5050
"scripts": {
51-
"postinstall": "./postinstall.sh"
51+
"postinstall": "bash ./postinstall.sh"
5252
}
5353
}
5454
EOF

0 commit comments

Comments
 (0)