mirror of
https://github.com/ankitects/anki.git
synced 2025-09-19 06:22:22 -04:00
Fix error reading scss;..\aqt_data\web: no such file or directory
Recently on my Windows, out of nowhere, it started throwing: ``` ../../ts/node_modules/.bin/tsc --build ../../ts/node_modules/.bin/sass --no-source-map scss:..\\aqt_data\\web Error reading scss;..\aqt_data\web: no such file or directory. make: *** [Makefile:26: build] Error 66 ```
This commit is contained in:
parent
75e721f4ad
commit
5c0dfa69a4
2 changed files with 3 additions and 1 deletions
1
qt/ts/.gitignore
vendored
Normal file
1
qt/ts/.gitignore
vendored
Normal file
|
@ -0,0 +1 @@
|
|||
/css
|
|
@ -23,7 +23,8 @@ all: check
|
|||
PHONY: build
|
||||
build:
|
||||
$(BIN)/tsc --build
|
||||
$(BIN)/sass --no-source-map scss:../aqt_data/web
|
||||
$(BIN)/sass --no-source-map scss:css
|
||||
rsync -a css/ ../aqt_data/web/
|
||||
|
||||
.PHONY: check
|
||||
check:
|
||||
|
|
Loading…
Reference in a new issue