diff --git a/scripts/startWatch.mts b/scripts/startWatch.mts index 1605115..d30a938 100644 --- a/scripts/startWatch.mts +++ b/scripts/startWatch.mts @@ -1,16 +1,10 @@ -/* - * SPDX-License-Identifier: GPL-3.0 - * Vencord Desktop, a desktop app aiming to give you a snappier Discord Experience - * Copyright (c) 2023 Vendicated and Vencord contributors - */ - import { spawn as cpSpawn, SpawnOptions } from "child_process"; import { join } from "path"; const EXT = process.platform === "win32" ? ".cmd" : ""; const OPTS: SpawnOptions = { - stdio: "inherit" + stdio: "inherit", }; function spawn(bin: string, args: string[]) {