UNPKG

388 BPlain TextView Raw
1#!/bin/sh
2
3DIRECTORY="./node_modules"
4if [ ! -d "$DIRECTORY" ]; then
5 echo "WARNING: Cannot find node_modules folder, please run 'npm install' first"
6fi
7
8if [ ! -x "$(command -v node)" ]; then
9 echo "WARNING: Node binary not found, please ensure it has been properly installed"
10fi
11
12if [ -d "$DIRECTORY" ] && [ -x "$(command -v node)" ]; then
13 ./node_modules/.bin/post-checkout "$@"
14fi