Update Files

This commit is contained in:
2025-01-22 16:18:30 +01:00
parent ed4603cf95
commit a36294b518
16718 changed files with 2960346 additions and 0 deletions

13
nodejs/copysysbin.sh Executable file
View File

@ -0,0 +1,13 @@
if [[ $OSTYPE == linux-gnu* ]]; then
arch=$(uname -m)
if [[ "$arch" == "aarch64" ]]; then
cp "$( dirname "${BASH_SOURCE[0]}" )"/node-linuxaarch64 "$( dirname "${BASH_SOURCE[0]}" )"/node
elif [[ "$arch" == "x86_64" ]]; then
cp "$( dirname "${BASH_SOURCE[0]}" )"/node-linux64 "$( dirname "${BASH_SOURCE[0]}" )"/node
else # Assume 32-bit ARM
cp "$( dirname "${BASH_SOURCE[0]}" )"/node-linuxarm "$( dirname "${BASH_SOURCE[0]}" )"/node
fi
elif [[ "$OSTYPE" == "darwin"* ]]; then
cp "$( dirname "${BASH_SOURCE[0]}" )"/node-osx "$( dirname "${BASH_SOURCE[0]}" )"/node
fi

BIN
nodejs/node-linux32 Executable file

Binary file not shown.

BIN
nodejs/node-linux64 Executable file

Binary file not shown.

BIN
nodejs/node-linuxaarch64 Executable file

Binary file not shown.

BIN
nodejs/node-linuxarm Executable file

Binary file not shown.

BIN
nodejs/node-osx Executable file

Binary file not shown.

BIN
nodejs/node.exe Normal file

Binary file not shown.