File tree 4 files changed +4
-6
lines changed
src/topos-playground/command
4 files changed +4
-6
lines changed Original file line number Diff line number Diff line change 1
- 0.5.0
1
+ 0.5.1
Original file line number Diff line number Diff line change 1
1
name : topos-playground.cr
2
- version : 0.5.0
2
+ version : 0.5.1
3
3
4
4
authors :
5
5
Original file line number Diff line number Diff line change @@ -56,8 +56,6 @@ class ToposPlayground::Command::Init < ToposPlayground::Command
56
56
end
57
57
58
58
def run
59
- background_processes = [] of Tuple (Channel (Bool ), Channel (String ), Process )
60
-
61
59
Log .for(" stdout" ).info { " Initializing the Topos-Playground...\n " }
62
60
63
61
verify_dependency_installation
@@ -180,7 +178,7 @@ class ToposPlayground::Command::Init < ToposPlayground::Command
180
178
update_repository(repo_path)
181
179
else
182
180
Log .for(" stdout" ).info { " Cloning #{ repo[:org ] } /#{ repo[:repo ] } ..." }
183
- status , _ = run_process(" rm -rf #{ repo_path } " )
181
+ _ , _ = run_process(" rm -rf #{ repo_path } " )
184
182
status, _ = run_process(" git clone --depth 1 #{ repo[:branch ] ? " --branch #{ repo[:branch ] } " : " " } https://github.com/#{ repo[:org ] } /#{ repo[:repo ] } .git #{ repo_path } " )
185
183
if status.success?
186
184
Log .for(" stdout" ).info { " ✅ #{ repo[:repo ] } #{ repo[:branch ] ? " | #{ repo[:branch ] } " : " " } successfully cloned" }
Original file line number Diff line number Diff line change @@ -266,7 +266,7 @@ class ToposPlayground::Command::Start < ToposPlayground::Command::Init
266
266
# is triggered by the `topos-playground` process exiting, such as when `ctrl-c` is
267
267
# pressed.
268
268
def wait_for (background_processes )
269
- # TODO : Have a command line flag so that the CLI _does not_ block on the
269
+ # Note to myself : Have a command line flag so that the CLI _does not_ block on the
270
270
# execution of the executor or the dapp frontend. Also add a cleanup
271
271
# phase to reap any executor or dapp frontend that may be running
272
272
You can’t perform that action at this time.
0 commit comments