From afa629a2b44884f0da4c2c2ed1c3befeb48423b0 Mon Sep 17 00:00:00 2001 From: appflowy Date: Fri, 11 Feb 2022 20:05:55 +0800 Subject: [PATCH] feat: update macOS dev install command --- frontend/Makefile | 16 +++++++--------- 1 file changed, 7 insertions(+), 9 deletions(-) diff --git a/frontend/Makefile b/frontend/Makefile index e922169ef6..d765683f94 100644 --- a/frontend/Makefile +++ b/frontend/Makefile @@ -1,12 +1,10 @@ -.PHONY: flowy_dev install_cargo_make +.PHONY: flowy_dev_install -flowy_dev: install_cargo_make - cargo make flowy_dev - -install_cargo_make: - cargo install --force cargo-make - brew bundle - -install_rust: +flowy_dev_install: brew bundle rustup-init -y --default-toolchain=stable + cargo install --force cargo-make + cargo install --force duckscript_cli + cargo make flowy_dev + +