浏览代码

feat: update macOS dev install command

appflowy 3 年之前
父节点
当前提交
afa629a2b4
共有 1 个文件被更改,包括 6 次插入8 次删除
  1. 6 8
      frontend/Makefile

+ 6 - 8
frontend/Makefile

@@ -1,12 +1,10 @@
-.PHONY: flowy_dev install_cargo_make
+.PHONY: flowy_dev_install
 
-flowy_dev: install_cargo_make
+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
 
-install_cargo_make:
-	cargo install --force cargo-make
-	brew bundle
 
-install_rust:
-	brew bundle
-	rustup-init -y --default-toolchain=stable