From 6a4a592714688ec8daca902cde10965daf1c9128 Mon Sep 17 00:00:00 2001 From: Jason Streifling Date: Fri, 23 Aug 2024 21:14:25 +0200 Subject: [PATCH] Fixed bug where tailwindcss was using a relative path --- update.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/update.sh b/update.sh index 448d6a1..f2555d7 100755 --- a/update.sh +++ b/update.sh @@ -40,7 +40,7 @@ curl -s $TAILWINDCSS_REPO_URL | cut -d'"' -f4 | xargs -r curl -Lo $CPOLIS_DIR/tailwindcss chmod +x $CPOLIS_DIR/tailwindcss -$CPOLIS_DIR/tailwindcss -i web/static/css/input.css -o web/static/css/style.css +$CPOLIS_DIR/tailwindcss -i $CPOLIS_DIR/web/static/css/input.css -o $CPOLIS_DIR/web/static/css/style.css echo -e 'Building cpolis...' >&2 go build -o $TMP_DIR/cpolis $CPOLIS_DIR/cmd/main.go