From 40cadac9cfcb8bf45bf099d3f0d5dbced5e5e3c3 Mon Sep 17 00:00:00 2001 From: V Date: Mon, 10 Apr 2023 22:06:38 +0200 Subject: [PATCH] Restore scripts/startWatch.mts --- scripts/startWatch.mts | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) 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[]) {