From 25c68562012162f0bbf1f8340264ce9f3b8d8856 Mon Sep 17 00:00:00 2001 From: ariel Date: Fri, 9 Feb 2024 12:14:48 +0100 Subject: [PATCH] Changelog, redundant comment --- CHANGELOG.md | 3 +++ cogment_lab/cli/launch.py | 1 - 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 794b092..b6b658f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -10,6 +10,9 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0. ### Fixed - `cogmentlab install` no longer requires root access +### Changed +- The `cogmentlab` command now uses the `cogment` executable stored in `$COGMENT_LAB_HOME/bin/cogment`. This might require rerunning `cogmentlab install` or updating the environment variable. + ## v0.1.2 - 2024-02-02 diff --git a/cogment_lab/cli/launch.py b/cogment_lab/cli/launch.py index d3039fa..e6b52ce 100644 --- a/cogment_lab/cli/launch.py +++ b/cogment_lab/cli/launch.py @@ -55,7 +55,6 @@ def launch_main(command: str): if process: processes.append(process) - # Optional: Wait for all subprocesses to complete for process in processes: process.wait()