From c76e370e50800289d549cbd1ab6240f619fcbd43 Mon Sep 17 00:00:00 2001 From: ajatprabha Date: Sun, 3 Oct 2021 06:46:17 +0530 Subject: [PATCH] add help text for sync make target --- Makefile | 1 + 1 file changed, 1 insertion(+) diff --git a/Makefile b/Makefile index 9892bf1..cc81ff1 100644 --- a/Makefile +++ b/Makefile @@ -6,6 +6,7 @@ assets: @if [ ! -d "$(NODE_PATH)" ]; then cd ./ui && yarn install --modules-folder $(NODE_PATH); fi cd ./ui && yarn build --modules-folder $(NODE_PATH) +# sync will copy the ui build assets to cmd/asynqmon so that it can be embedded into the go binary sync: rsync -avu --delete "./ui/build/" "./cmd/asynqmon/ui-assets"