remove debug

This commit is contained in:
Evan Simkowitz 2024-12-18 10:50:08 -08:00
parent 061279afaa
commit 09a87e8db4
No known key found for this signature in database

View File

@ -621,7 +621,6 @@ async function appMain() {
// Check if the user is requesting the version from the command line, if so, return it and bail out. // Check if the user is requesting the version from the command line, if so, return it and bail out.
const args = process.argv; const args = process.argv;
console.log("args", args);
if (args?.length > 1 && (args.includes("--version") || args.includes("-v"))) { if (args?.length > 1 && (args.includes("--version") || args.includes("-v"))) {
const pkg = require("../package.json"); const pkg = require("../package.json");
console.log(`Wave Terminal v${pkg.version}`); console.log(`Wave Terminal v${pkg.version}`);