sheetjs/misc/node_version.sh
SheetJS e71eeda4d2 updated travis tests
Co-authored-by: Garrett Luu <garrettluu131@gmail.com>
2020-07-02 02:24:11 -04:00

11 lines
226 B
Bash
Executable File

#! /usr/bin/env bash
# This script will check the current version of node and install another version
# of npm if node is version 0.8
version=$(node --version)
if [[ $version =~ v0\.8\. ]]
then
npm install -g npm@4.3.0
fi