From 4958b2d6fe33fb266053922fa22cb8a0b0f3215c Mon Sep 17 00:00:00 2001 From: Luisa Orozco Date: Fri, 20 Sep 2024 16:33:33 +0200 Subject: [PATCH] Add first command in Next Steps: exit() to exit Julia REPL --- src/api.jl | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/api.jl b/src/api.jl index 3239f6e5..c42d658b 100644 --- a/src/api.jl +++ b/src/api.jl @@ -89,6 +89,7 @@ function generate(src_path, dst_path, data::Dict = Dict(); kwargs...) Next steps: Create git repository and push to Github. + \$ exit() # Exit the Julia REPL \$ cd $dst_path \$ git init \$ git add . @@ -180,6 +181,7 @@ function apply( Review the modifications. In particular README.md and docs/src/index.md tend to be heavily edited. + \$ exit() # Exit the Julia REPL \$ git switch -c apply-bestie # If you haven't created a branch \$ git add . \$ pre-commit run -a # Try to fix possible pre-commit issues (failures are expected)