mirror of
https://github.com/AppFlowy-IO/AppFlowy.git
synced 2024-08-30 18:12:39 +00:00
fix: command fail on linux system (#1731)
This commit is contained in:
parent
5d125091d9
commit
128bf02ffb
@ -1,10 +1,22 @@
|
|||||||
|
|
||||||
[tasks.install_tauri_protobuf]
|
[tasks.install_tauri_protobuf.windows]
|
||||||
script = """
|
script = """
|
||||||
npm install -g protoc-gen-ts
|
npm install -g protoc-gen-ts
|
||||||
"""
|
"""
|
||||||
script_runner = "@duckscript"
|
script_runner = "@duckscript"
|
||||||
|
|
||||||
|
[tasks.install_tauri_protobuf.mac]
|
||||||
|
script = """
|
||||||
|
npm install -g protoc-gen-ts
|
||||||
|
"""
|
||||||
|
script_runner = "@shell"
|
||||||
|
|
||||||
|
[tasks.install_tauri_protobuf.linux]
|
||||||
|
script = """
|
||||||
|
npm install -g protoc-gen-ts
|
||||||
|
"""
|
||||||
|
script_runner = "@shell"
|
||||||
|
|
||||||
[tasks.install_flutter_protobuf]
|
[tasks.install_flutter_protobuf]
|
||||||
mac_alias = "install-protobuf"
|
mac_alias = "install-protobuf"
|
||||||
windows_alias = "install-protobuf-windows"
|
windows_alias = "install-protobuf-windows"
|
||||||
|
Loading…
Reference in New Issue
Block a user