mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-01-11 18:26:50 +00:00
The setup script would display several error messages and continue running. Now the user is guided to the right solution.
30 lines
713 B
Bash
Executable File
30 lines
713 B
Bash
Executable File
#!/bin/bash
|
|
#
|
|
# Install our selected Node version defined in the .node-version file.
|
|
#
|
|
# If our node-build version is outdated and it can't build the version we want
|
|
# then we try upgrading node-build and installing again.
|
|
|
|
# Fail if a single command fails.
|
|
set -e
|
|
|
|
if ! command -v nodenv > /dev/null; then
|
|
printf "Please install https://github.com/nodenv/nodenv.\n"
|
|
exit 1
|
|
fi
|
|
|
|
if nodenv install --skip-existing; then
|
|
echo "Correct Node version is installed."
|
|
else
|
|
echo "Upgrading node-build:"
|
|
|
|
if command -v brew &> /dev/null; then
|
|
# Installation via Homebrew is recommended on macOS.
|
|
brew upgrade node-build
|
|
else
|
|
git -C "$(nodenv root)"/plugins/node-build pull
|
|
fi
|
|
|
|
nodenv install
|
|
fi
|