Make check after deploy, not before.
Before fails since links are absolute.
This commit is contained in:
parent
665cb30154
commit
283713be89
2
Makefile
2
Makefile
|
@ -11,7 +11,7 @@ preview: $(TOP)
|
||||||
./$(TOP) rebuild && ./$(TOP) watch
|
./$(TOP) rebuild && ./$(TOP) watch
|
||||||
|
|
||||||
deploy: $(TOP)
|
deploy: $(TOP)
|
||||||
./$(TOP) rebuild && ./$(TOP) check && ./$(TOP) deploy
|
./$(TOP) rebuild && ./$(TOP) deploy && ./$(TOP) check
|
||||||
|
|
||||||
clean:
|
clean:
|
||||||
rm *.hi *.o $(TOP)
|
rm *.hi *.o $(TOP)
|
||||||
|
|
Loading…
Reference in New Issue