aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoris2025-04-19 22:14:47 +0200
committerJoris2025-04-19 22:14:47 +0200
commit437d3cfe6600d4cb1760819772628856087efa62 (patch)
tree524730f8e405ce2e7a0a9ef5d2e978d1f12ed782
parent9fbcacd685545be3b619d240f9855a13363357c9 (diff)
Call bash in Makefile to run scripts
-rw-r--r--frontend/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/frontend/Makefile b/frontend/Makefile
index a279070..142cdab 100644
--- a/frontend/Makefile
+++ b/frontend/Makefile
@@ -6,11 +6,11 @@ build: ../backend/public/index.html ../backend/public/main.css ../backend/public
../backend/public/main.css: $(shell find styles)
mkdir -p ../backend/public
- bin/compile-sass
+ bash bin/compile-sass
../backend/public/main.js: $(shell find ts)
mkdir -p ../backend/public
- bin/compile-ts
+ bash bin/compile-ts
../backend/public/icon.png: images/icon.png
mkdir -p ../backend/public