From 6bcfd2ad43a84a67baa1cf3a1c2d9850ddbebaca Mon Sep 17 00:00:00 2001 From: Matthew Leibowitz Date: Mon, 2 Dec 2024 22:40:21 +0800 Subject: [PATCH] Revert "Add some more logging" This reverts commit 24b7e46826c5ec4c7b21c33ebd469ca68c50ed79. --- native/winui-angle/build.cake | 6 ------ 1 file changed, 6 deletions(-) diff --git a/native/winui-angle/build.cake b/native/winui-angle/build.cake index 890864b6e2..2b8340aa93 100644 --- a/native/winui-angle/build.cake +++ b/native/winui-angle/build.cake @@ -80,9 +80,6 @@ Task("sync-ANGLE") RunPython(ANGLE_PATH, ANGLE_PATH.CombineWithFilePath("tools/clang/scripts/update.py")); } - // long the free space - RunProcess("pwsh", ROOT_PATH.CombineWithFilePath("scripts/get-free-space.ps1").FullPath); - // generate Windows App SDK files if (!FileExists(WINAPPSDK_PATH.CombineWithFilePath("Microsoft.WindowsAppSDK.nuspec"))) { var setup = ANGLE_PATH.CombineWithFilePath("scripts/winappsdk_setup.py"); @@ -90,9 +87,6 @@ Task("sync-ANGLE") ROOT_PATH.CombineWithFilePath("scripts/vcvarsall.bat"), $"\"{VS_INSTALL}\" \"x64\" \"{PYTHON_EXE}\" \"{setup}\" --output \"{WINAPPSDK_PATH}\""); } - - // long the free space - RunProcess("pwsh", ROOT_PATH.CombineWithFilePath("scripts/get-free-space.ps1").FullPath); }); Task("ANGLE")