source: frontend/node_modules/.bin/tailwindcss

Last change on this file was 9af201e, checked in by MBK <marija.karapandzova@…>, 11 days ago

Fix frontend appearance

  • Property mode set to 100644
File size: 393 bytes
Line 
1#!/bin/sh
2basedir=$(dirname "$(echo "$0" | sed -e 's,\\,/,g')")
3
4case `uname` in
5 *CYGWIN*|*MINGW*|*MSYS*)
6 if command -v cygpath > /dev/null 2>&1; then
7 basedir=`cygpath -w "$basedir"`
8 fi
9 ;;
10esac
11
12if [ -x "$basedir/node" ]; then
13 exec "$basedir/node" "$basedir/../tailwindcss/lib/cli.js" "$@"
14else
15 exec node "$basedir/../tailwindcss/lib/cli.js" "$@"
16fi
Note: See TracBrowser for help on using the repository browser.