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")