From 816fe5b479dcc186eb3387b56e1618476f34fe9d Mon Sep 17 00:00:00 2001 From: Pranav Gaddamadugu Date: Fri, 29 Sep 2023 14:54:23 -0400 Subject: [PATCH] Fix CI --- examples/vote/run.sh | 14 ++++---------- 1 file changed, 4 insertions(+), 10 deletions(-) diff --git a/examples/vote/run.sh b/examples/vote/run.sh index 3e6c9eb923..c1e46cac14 100755 --- a/examples/vote/run.sh +++ b/examples/vote/run.sh @@ -20,9 +20,7 @@ echo " ############################################################################### " # Run the `propose` program function -( - cat ./inputs/propose.in | xargs leo run propose || exit -) +cat ./inputs/propose.in | xargs leo run propose || exit echo " ############################################################################### @@ -38,9 +36,7 @@ echo " ############################################################################### " # Run the `new_ticket` program function -( - cat ./inputs/new_ticket.in | xargs leo run new_ticket || exit -) +cat ./inputs/new_ticket.in | xargs leo run new_ticket || exit echo " ############################################################################### @@ -56,7 +52,5 @@ echo " ############################################################################### " # Run the `agree` or `disagree` program function -( - cat ./inputs/agree.in | xargs leo run agree || exit - #cat ./inputs/disagree.in | xargs leo run disagree || exit -) +cat ./inputs/agree.in | xargs leo run agree || exit +#cat ./inputs/disagree.in | xargs leo run disagree || exit