From add4fb5c48152fad56333de4b05a079ee98b1daa Mon Sep 17 00:00:00 2001 From: despiegk Date: Thu, 21 Aug 2025 09:55:30 +0200 Subject: [PATCH] ... --- cli/compile.vsh | 4 ++-- cli/hero.v | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/cli/compile.vsh b/cli/compile.vsh index 8f58459a..848e52cc 100755 --- a/cli/compile.vsh +++ b/cli/compile.vsh @@ -45,7 +45,7 @@ compile_cmd := if os.user_os() == 'macos' { if prod_mode { 'v -enable-globals -g -w -n -prod hero.v' } else { - 'v -n -g -w -cg -gc none -cc tcc -d use_openssl -enable-globals hero.v' + 'v -n -g -w -cg -cc tcc -d use_openssl -enable-globals hero.v' } } else { if prod_mode { @@ -56,7 +56,7 @@ compile_cmd := if os.user_os() == 'macos' { } println('Building in ${if prod_mode { 'production' } else { 'debug' }} mode...') -// eprintln(compile_cmd) +eprintln(compile_cmd) if os.system(compile_cmd) != 0 { panic('Failed to compile hero.v with command: ${compile_cmd}') diff --git a/cli/hero.v b/cli/hero.v index 4e26b040..b32042ad 100644 --- a/cli/hero.v +++ b/cli/hero.v @@ -85,7 +85,7 @@ fn do() ! { herocmds.cmd_git(mut cmd) herocmds.cmd_generator(mut cmd) herocmds.cmd_docusaurus(mut cmd) - herocmds.cmd_web(mut cmd) + // herocmds.cmd_web(mut cmd) cmd.setup() cmd.parse(os.args)