From 38986124a2fb556f5e99cbf1edfef04f614e0cf1 Mon Sep 17 00:00:00 2001 From: despiegk Date: Wed, 25 Dec 2024 12:30:49 +0100 Subject: [PATCH] the base --- cli/compile.vsh | 2 +- cli/hero.v | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/cli/compile.vsh b/cli/compile.vsh index 8d9ef076..7a2dbb70 100755 --- a/cli/compile.vsh +++ b/cli/compile.vsh @@ -30,7 +30,7 @@ if additional_args.len > 0 { } // Change to the hero directory -hero_dir := os.join_path(os.home_dir(), 'code/github/freeflowuniverse/herolib/cli/hero') +hero_dir := os.join_path(os.home_dir(), 'code/github/freeflowuniverse/herolib/cli') os.chdir(hero_dir) or { panic('Failed to change directory to ${hero_dir}: ${err}') } // Set HEROPATH based on OS diff --git a/cli/hero.v b/cli/hero.v index 9c5b8683..7c6bb28a 100644 --- a/cli/hero.v +++ b/cli/hero.v @@ -2,7 +2,7 @@ module main import os import cli { Command, Flag } -import freeflowuniverse.herolib.hero.cmds +// import freeflowuniverse.herolib.hero.cmds // import freeflowuniverse.herolib.hero.publishing import freeflowuniverse.herolib.installers.base import freeflowuniverse.herolib.ui.console