From 5c0dfa69a4ccc20bafc074c91e53bc82f0d6f20c Mon Sep 17 00:00:00 2001 From: evandrocoan Date: Thu, 20 Aug 2020 21:51:04 -0300 Subject: [PATCH] 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 ``` --- qt/ts/.gitignore | 1 + qt/ts/Makefile | 3 ++- 2 files changed, 3 insertions(+), 1 deletion(-) create mode 100644 qt/ts/.gitignore diff --git a/qt/ts/.gitignore b/qt/ts/.gitignore new file mode 100644 index 000000000..b83e8995b --- /dev/null +++ b/qt/ts/.gitignore @@ -0,0 +1 @@ +/css diff --git a/qt/ts/Makefile b/qt/ts/Makefile index 2883b87ca..cc644e0cb 100644 --- a/qt/ts/Makefile +++ b/qt/ts/Makefile @@ -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: