mirror of
https://github.com/ProvableHQ/leo.git
synced 2024-11-24 07:48:04 +03:00
22 lines
303 B
Bash
Executable File
22 lines
303 B
Bash
Executable File
# Build the Leo vote program.
|
|
(
|
|
leo build || exit
|
|
)
|
|
|
|
# Run the `propose` program function
|
|
(
|
|
leo run propose || exit
|
|
)
|
|
|
|
# Run the `new_ticket` program function
|
|
(
|
|
leo run new_ticket || exit
|
|
)
|
|
|
|
# Run the `agree` or `disagree` program function
|
|
(
|
|
leo run agree || exit
|
|
# leo run disagree || exit
|
|
)
|
|
|