setup-node/__tests__/verify-node-version.sh
eric sciple a96a3f1cee .
2020-01-24 11:28:26 -05:00

13 lines
No EOL
248 B
Bash
Executable file

#!/bin/sh
if [ -z "$1" ]; then
echo "Must supply version argument"
exit 1
fi
node_version="$(node --version)"
echo "Found node version '$node_version'"
if [ -z "$(echo $node_version | grep v$1)" ]; then
echo "Unexpected version"
exit 1
fi