mkws outputs to 'out' instead of 'public'

This commit is contained in:
2026-06-02 17:53:28 +01:00
parent 7ac7ed3cec
commit 86f40be2cb
3 changed files with 5 additions and 5 deletions
+1 -1
View File
@@ -1 +1 @@
public
out
+3 -3
View File
@@ -1,8 +1,8 @@
all: clean public
all: clean out
public: $(shell find src -type f) $(shell find share -type f) $(shell find bin)
out: $(shell find src -type f) $(shell find share -type f) $(shell find bin)
./bin/mkws https://joeac.net
.PHONY: clean
clean:
rm -rf public
rm -rf out
+1 -1
View File
@@ -10,7 +10,7 @@ test $# -lt 1 && usage
export SRC="$(realpath src)"
export SHARE="$(realpath share)"
export OUT="$(realpath public)"
export OUT="$(realpath out)"
mkdir -p ${OUT}
if ! test -f "${SRC}"/index.upphtml