aboutsummaryrefslogtreecommitdiff
path: root/node_modules
diff options
context:
space:
mode:
Diffstat (limited to 'node_modules')
-rw-r--r--node_modules/.bin/mime16
1 files changed, 15 insertions, 1 deletions
diff --git a/node_modules/.bin/mime b/node_modules/.bin/mime
index 4596ed4..0dbddf0 100644
--- a/node_modules/.bin/mime
+++ b/node_modules/.bin/mime
@@ -1 +1,15 @@
-die die died eid eid edie ddscfhjkaijkasdfghjadsbhjkadsgadsjghj
+#!/bin/sh
+basedir=$(dirname "$(echo "$0" | sed -e 's,\\,/,g')")
+
+case `uname` in
+ *CYGWIN*) basedir=`cygpath -w "$basedir"`;;
+esac
+
+if [ -x "$basedir/node" ]; then
+ "$basedir/node" "$basedir/../mime/cli.js" "$@"
+ ret=$?
+else
+ node "$basedir/../mime/cli.js" "$@"
+ ret=$?
+fi
+exit $ret