my website at https://anirudh.fi

bin/build.sh: update clone url

authored by anirudh.fi and committed by anirudh.fi 49716987 6ccf8197

+6 -4
+6 -4
bin/build.sh
··· 1 1 #!/bin/sh 2 2 3 3 4 + npm install tailwindcss @tailwindcss/cli 5 + 4 6 rm -rf go-vite 5 - git clone https://github.com/icyphox/go-vite 6 - cd go-vite && make && cd .. 7 + git clone https://tangled.sh/@icyphox.sh/vite 8 + cd vite && make && cd .. 7 9 mkdir build 8 10 9 11 if [ "$VITE_ENV" = "production" ]; then 10 - go-vite/vite build 12 + vite/vite build 11 13 else 12 - go-vite/vite build --drafts 14 + vite/vite build --drafts 13 15 fi