Skip to content

Commit

Permalink
Change default path
Browse files Browse the repository at this point in the history
  • Loading branch information
RedTachyon committed Feb 9, 2024
1 parent 25c6856 commit dc50769
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion cogment_lab/cli/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@


def install_cogment():
install_dir = COGMENT_LAB_HOME / "bin"
install_dir = COGMENT_LAB_HOME
try:
cogment_path = download_cogment(install_dir, "2.19.1")
logging.info(f"Cogment installed successfully in [{cogment_path}].")
Expand Down
2 changes: 1 addition & 1 deletion cogment_lab/cli/launch.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@


def launch_service(service_name: str):
cogment_path = COGMENT_LAB_HOME / "bin/cogment"
cogment_path = COGMENT_LAB_HOME / "cogment"
try:
process = subprocess.Popen([cogment_path, "services", service_name])
logging.info(f"{service_name} launched successfully. PID: {process.pid}")
Expand Down

0 comments on commit dc50769

Please sign in to comment.