Monorepo for Tangled

flake: create static dir before copying in watch-appview

Signed-off-by: Jes Olson <j3s@c3f.net>

authored by

Jes Olson and committed by tangled.org 36f120a7 7b28c489

+1
+1
flake.nix
··· 218 type = "app"; 219 program = toString (pkgs.writeShellScript "watch-appview" '' 220 echo "copying static files to appview/pages/static..." 221 ${pkgs.coreutils}/bin/cp -fr --no-preserve=ownership ${packages'.appview-static-files}/* appview/pages/static 222 ${air-watcher "appview" ""}/bin/run 223 '');
··· 218 type = "app"; 219 program = toString (pkgs.writeShellScript "watch-appview" '' 220 echo "copying static files to appview/pages/static..." 221 + mkdir -p appview/pages/static 222 ${pkgs.coreutils}/bin/cp -fr --no-preserve=ownership ${packages'.appview-static-files}/* appview/pages/static 223 ${air-watcher "appview" ""}/bin/run 224 '');