From 8f9c7efbed4b5a80ec5989bd400a284391169e0f Mon Sep 17 00:00:00 2001 From: collin <16715212+collinc97@users.noreply.github.com> Date: Fri, 5 Aug 2022 11:14:58 -0700 Subject: [PATCH] fix program names --- .circleci/leo-clean.sh | 6 +++--- .circleci/leo-new.sh | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.circleci/leo-clean.sh b/.circleci/leo-clean.sh index 8448ae24c2..e40ab9ed04 100755 --- a/.circleci/leo-clean.sh +++ b/.circleci/leo-clean.sh @@ -1,8 +1,8 @@ -# leo new hello-world +# Create a new Leo program named `foo` and run `leo build`. -$LEO new hello-world +$LEO new foo ls -la -cd hello-world && ls -la +cd foo && ls -la $LEO build # Assert that the 'outputs' folder is not empty diff --git a/.circleci/leo-new.sh b/.circleci/leo-new.sh index 46d4e3790b..02a0c32f1a 100755 --- a/.circleci/leo-new.sh +++ b/.circleci/leo-new.sh @@ -1,7 +1,7 @@ -# Create a new foo project. +# Create a new Leo program named `foo`. $LEO new foo ls -la cd foo && ls -la -# Try to compile and run the template project. +# Try to run `leo build`. $LEO run