mirror of
https://github.com/twentyhq/twenty
synced 2026-04-21 13:37:22 +00:00
The PR https://github.com/twentyhq/twenty/pull/11400 introduced changes to the execution permissions of many executable files. These changes aren't correct and must be reverted. cc. @charlesBochet
5 lines
No EOL
399 B
Bash
Executable file
5 lines
No EOL
399 B
Bash
Executable file
#!/bin/bash
|
|
command -v node >/dev/null 2>&1 || { echo >&2 "Nx requires NodeJS to be available. To install NodeJS and NPM, see: https://nodejs.org/en/download/ ."; exit 1; }
|
|
command -v npm >/dev/null 2>&1 || { echo >&2 "Nx requires npm to be available. To install NodeJS and NPM, see: https://nodejs.org/en/download/ ."; exit 1; }
|
|
path_to_root=$(dirname $BASH_SOURCE)
|
|
node $path_to_root/.nx/nxw.js $@ |