mirror of
https://github.com/AppFlowy-IO/AppFlowy
synced 2026-05-15 13:18:27 +00:00
fix: command fail on linux system (#1731)
This commit is contained in:
parent
5d125091d9
commit
128bf02ffb
1 changed files with 13 additions and 1 deletions
|
|
@ -1,10 +1,22 @@
|
|||
|
||||
[tasks.install_tauri_protobuf]
|
||||
[tasks.install_tauri_protobuf.windows]
|
||||
script = """
|
||||
npm install -g protoc-gen-ts
|
||||
"""
|
||||
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]
|
||||
mac_alias = "install-protobuf"
|
||||
windows_alias = "install-protobuf-windows"
|
||||
|
|
|
|||
Loading…
Reference in a new issue