#!/bin/sh basedir=$(dirname "$(echo "$0" | sed -e 's,\\,/,g')") case `uname` in *CYGWIN*) basedir=`cygpath -w "$basedir"`;; esac if [ -z "$NODE_PATH" ]; then export NODE_PATH="/home/whoami/Desktop/Snigdha-OS.github.io/node_modules/.pnpm/autoprefixer@10.4.20_postcss@8.4.49/node_modules/autoprefixer/bin/node_modules:/home/whoami/Desktop/Snigdha-OS.github.io/node_modules/.pnpm/autoprefixer@10.4.20_postcss@8.4.49/node_modules/autoprefixer/node_modules:/home/whoami/Desktop/Snigdha-OS.github.io/node_modules/.pnpm/autoprefixer@10.4.20_postcss@8.4.49/node_modules:/home/whoami/Desktop/Snigdha-OS.github.io/node_modules/.pnpm/node_modules" else export NODE_PATH="/home/whoami/Desktop/Snigdha-OS.github.io/node_modules/.pnpm/autoprefixer@10.4.20_postcss@8.4.49/node_modules/autoprefixer/bin/node_modules:/home/whoami/Desktop/Snigdha-OS.github.io/node_modules/.pnpm/autoprefixer@10.4.20_postcss@8.4.49/node_modules/autoprefixer/node_modules:/home/whoami/Desktop/Snigdha-OS.github.io/node_modules/.pnpm/autoprefixer@10.4.20_postcss@8.4.49/node_modules:/home/whoami/Desktop/Snigdha-OS.github.io/node_modules/.pnpm/node_modules:$NODE_PATH" fi if [ -x "$basedir/node" ]; then exec "$basedir/node" "$basedir/../autoprefixer/bin/autoprefixer" "$@" else exec node "$basedir/../autoprefixer/bin/autoprefixer" "$@" fi