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