mirror of
https://github.com/Quad4-Software/MeshChatX.git
synced 2026-08-18 09:49:09 -04:00
8 lines
298 B
Bash
Executable file
8 lines
298 B
Bash
Executable file
#!/bin/sh
|
|
# Ensure /usr/local/bin (go-task, etc.) is on PATH without shadowing actions/setup-node.
|
|
# ARM64 GitHub-hosted images may ship Node 20 in /usr/local/bin. Prepending it breaks pnpm 11.
|
|
case ":${PATH}:" in
|
|
*:/usr/local/bin:*) ;;
|
|
*) PATH="${PATH}:/usr/local/bin" ;;
|
|
esac
|
|
export PATH
|