19 lines
350 B
Bash
Executable File
19 lines
350 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -eu
|
|
|
|
DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
|
|
|
|
# figure out the platform we're on
|
|
|
|
# source ../framework/versions
|
|
# [eventually: check for it in user's cache dir
|
|
# download $nodejs_version
|
|
# verify its checksum against $nodejs_checksum
|
|
|
|
cd "$DIR/../node"
|
|
|
|
"$DIR"/pnpm install
|
|
|
|
echo we will download other files here later
|