build: do not rely on chmod (#12413)

This commit is contained in:
Alex Rudenko
2024-05-08 08:53:09 +02:00
committed by GitHub
parent d205a03aef
commit a232974eac
2 changed files with 2 additions and 2 deletions

View File

@@ -12,7 +12,7 @@
},
"wireit": {
"build": {
"command": "tsc -b && chmod +x ./bin/doctest.js",
"command": "tsc -b && tsx ../../tools/chmod.ts 755 ./bin/doctest.js",
"clean": "if-file-deleted",
"files": [
"src/**"

View File

@@ -13,7 +13,7 @@
},
"wireit": {
"build": {
"command": "tsc -b && chmod +x ./bin/mocha-runner.js",
"command": "tsc -b && tsx ../../tools/chmod.ts 755 ./bin/mocha-runner.js",
"clean": "if-file-deleted",
"files": [
"src/**"