Skip to content

Commit 2c94230

Browse files
style(Wind): Use POSIX sh shebang for build scripts
Update the shebang line in both Source/Run.sh and Source/prepublishOnly.sh from `#!/usr/bin/env bash` to `#!/usr/bin/env sh` for improved portability across Unix-like systems. This ensures the build scripts can execute on systems where bash may not be installed or available at the standard path, adhering to POSIX compatibility standards.
1 parent 81826d3 commit 2c94230

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

Source/Run.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/usr/bin/env bash
1+
#!/usr/bin/env sh
22

33
Build "Source/Configuration/**/*.{ts,json}" \
44
--ESBuild Source/Configuration/ESBuild/Wind.ts

Source/prepublishOnly.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/usr/bin/env bash
1+
#!/usr/bin/env sh
22

33
# Stage 1: Build configuration files - use self-contained ESBuild.ts to avoid circular dependency
44
Build "Source/Configuration/**/*.{ts,json}" \

0 commit comments

Comments
 (0)