From 27b480e118d8c243135f3c2c6b8f28622388507d Mon Sep 17 00:00:00 2001 From: Bill Thiede Date: Sat, 28 Sep 2024 12:22:35 -0700 Subject: [PATCH] web: try alternative for clearing screen on build --- web/Trunk.toml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/web/Trunk.toml b/web/Trunk.toml index 1f0e548..08c0598 100644 --- a/web/Trunk.toml +++ b/web/Trunk.toml @@ -11,7 +11,8 @@ backend = "http://localhost:9345/api/" [[hooks]] stage = "pre_build" -command = "clear" +command = "printf" +command_arguments = [ "\\033c" ] #[[hooks]] #stage = "pre_build"