Skip to content

Instantly share code, notes, and snippets.

@cstrachan88
Created January 11, 2019 14:18
Show Gist options
  • Save cstrachan88/28962308d095fffc17f4406c7cea7298 to your computer and use it in GitHub Desktop.
Save cstrachan88/28962308d095fffc17f4406c7cea7298 to your computer and use it in GitHub Desktop.
Yarn 1.12.3 global files for @vue/cli
#!/bin/sh
basedir=$(dirname "$(echo "$0" | sed -e 's,\\,/,g')")
case `uname` in
*CYGWIN*) basedir=`cygpath -w "$basedir"`;;
esac
if [ -x "$basedir//bin/sh" ]; then
"$basedir//bin/sh" "$basedir/../Data/global/node_modules/.bin/vue" "$@"
ret=$?
else
/bin/sh "$basedir/../Data/global/node_modules/.bin/vue" "$@"
ret=$?
fi
exit $ret
@"%~dp0\..\Data\global\node_modules\.bin\vue.cmd" %*
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment