Files
koillection-uploader/node_modules/.bin/csv-parser
T
joseph.nelson4456 c9f0d5a776
Build and Push Image / build-and-push (push) Successful in 1m16s
adding all images for perfect order to repo
2026-04-28 23:17:38 -07:00

17 lines
399 B
Bash

#!/bin/sh
basedir=$(dirname "$(echo "$0" | sed -e 's,\\,/,g')")
case `uname` in
*CYGWIN*|*MINGW*|*MSYS*)
if command -v cygpath > /dev/null 2>&1; then
basedir=`cygpath -w "$basedir"`
fi
;;
esac
if [ -x "$basedir/node" ]; then
exec "$basedir/node" "$basedir/../csv-parser/bin/csv-parser" "$@"
else
exec node "$basedir/../csv-parser/bin/csv-parser" "$@"
fi