]> git.proxmox.com Git - mirror_edk2.git/blobdiff - BaseTools/BinWrappers/WindowsLike/BrotliCompress.bat
BaseTools: Fix BrotliCompress tool issue
[mirror_edk2.git] / BaseTools / BinWrappers / WindowsLike / BrotliCompress.bat
diff --git a/BaseTools/BinWrappers/WindowsLike/BrotliCompress.bat b/BaseTools/BinWrappers/WindowsLike/BrotliCompress.bat
deleted file mode 100644 (file)
index 788c99a..0000000
+++ /dev/null
@@ -1,55 +0,0 @@
-@REM @file\r
-@REM This script will exec Brotli tool with -e/-d options.\r
-@REM\r
-@REM Copyright (c) 2017 - 2018, Intel Corporation. All rights reserved.<BR>\r
-@REM SPDX-License-Identifier: BSD-2-Clause-Patent\r
-@REM\r
-\r
-@echo off\r
-@setlocal\r
-\r
-set QLT=-q 9 -w 22\r
-set ARGS=\r
-\r
-:Begin\r
-if "%1"=="" goto End\r
-\r
-if "%1"=="-d" (\r
-  set ARGS=%ARGS% %1\r
-  shift\r
-  goto Begin\r
-)\r
-\r
-if "%1"=="-e" (\r
-  shift\r
-  goto Begin\r
-)\r
-\r
-if "%1"=="-g" (\r
-  set ARGS=%ARGS% %1 %2\r
-  shift\r
-  shift\r
-  goto Begin\r
-)\r
-\r
-if "%1"=="-o" (\r
-  set ARGS=%ARGS% %1 %2\r
-  shift\r
-  shift\r
-  goto Begin\r
-)\r
-\r
-if "%1"=="-q" (\r
-  set QLT=%1 %2\r
-  shift\r
-  shift\r
-  goto Begin\r
-)\r
-\r
-set ARGS=%ARGS% %1\r
-shift\r
-goto Begin\r
-\r
-:End\r
-Brotli %QLT% %ARGS%\r
-@echo on\r