mirror of
https://github.com/AppFlowy-IO/AppFlowy.git
synced 2024-08-30 18:12:39 +00:00
[Build] Fix Linux build instruction
1. BUILD_ON_LINUX.md - Remove brew dependency - Update command for development in step 9 & 10 2. Fix file name typo for BUILD_ON_WINDOWS.md
This commit is contained in:
@ -70,7 +70,6 @@ rustup target add x86_64-apple-darwin
|
||||
rustup target add aarch64-apple-ios
|
||||
rustup target add aarch64-apple-darwin
|
||||
rustup target add x86_64-pc-windows-msvc
|
||||
rustup target add x86_64-pc-windows-msvc
|
||||
rustup target add x86_64-unknown-linux-gnu
|
||||
"""
|
||||
|
||||
|
@ -17,6 +17,25 @@ dependencies = ["flowy-sdk-release"]
|
||||
run_task = { name = ["flutter-build", "copy-to-product"] }
|
||||
script_runner = "@shell"
|
||||
|
||||
[tasks.appflowy-dev]
|
||||
mac_alias = "appflowy-macos-dev"
|
||||
windows_alias = "appflowy-windows-dev"
|
||||
linux_alias = "appflowy-linux-dev"
|
||||
|
||||
[tasks.appflowy-macos-dev]
|
||||
dependencies = ["flowy-sdk-dev"]
|
||||
run_task = { name = ["flutter-build", "copy-to-product"] }
|
||||
script_runner = "@shell"
|
||||
|
||||
[tasks.appflowy-windows-dev]
|
||||
dependencies = ["flowy-sdk-dev"]
|
||||
run_task = { name = ["flutter-build", "copy-to-product"] }
|
||||
|
||||
[tasks.appflowy-linux-dev]
|
||||
dependencies = ["flowy-sdk-dev"]
|
||||
run_task = { name = ["flutter-build", "copy-to-product"] }
|
||||
script_runner = "@shell"
|
||||
|
||||
[tasks.copy-to-product]
|
||||
mac_alias = "copy-to-product-macos"
|
||||
windows_alias = "copy-to-product-windows"
|
||||
|
Reference in New Issue
Block a user