UNPKG

228 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 [ -d "$DIRECTORY" ]; then
9 ./node_modules/.bin/post-checkout "$@"
10fi