]> git.proxmox.com Git - mirror_edk2.git/blobdiff - BaseTools/BinWrappers/PosixLike/BrotliCompress
BaseTools: Update Brotli and BrotliCompress mode and format
[mirror_edk2.git] / BaseTools / BinWrappers / PosixLike / BrotliCompress
old mode 100644 (file)
new mode 100755 (executable)
index a571ff6..59c6465
@@ -1,42 +1,42 @@
-#!/usr/bin/env bash\r
-#\r
-# This script will exec Brotli tool.\r
-#\r
-# Copyright (c) 2017, Intel Corporation. All rights reserved.<BR>\r
-# This program and the accompanying materials\r
-# are licensed and made available under the terms and conditions of the BSD License\r
-# which accompanies this distribution.  The full text of the license may be found at\r
-# http://opensource.org/licenses/bsd-license.php\r
-#\r
-# THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,\r
-# WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.\r
-#\r
-LVL="--quality 9"\r
-\r
-while [ $# != 0 ];do\r
-  case $1 in\r
-    -d)\r
-      ARGS+="--decompress "\r
-    ;;\r
-    -e)\r
-    ;;\r
-    -g)\r
-      ARGS+="--gap $2 "\r
-      shift\r
-    ;;\r
-    -l)\r
-      LVL="--quality $2 "\r
-      shift\r
-    ;;\r
-    -o)\r
-      ARGS+="--output $2 "\r
-      shift\r
-    ;;\r
-    *)\r
-      ARGS+="--input $1 "\r
-  esac\r
-\r
-shift\r
-done\r
-\r
-exec Brotli $ARGS $LVL\r
+#!/usr/bin/env bash
+#
+# This script will exec Brotli tool.
+#
+# Copyright (c) 2017, Intel Corporation. All rights reserved.<BR>
+# This program and the accompanying materials
+# are licensed and made available under the terms and conditions of the BSD License
+# which accompanies this distribution.  The full text of the license may be found at
+# http://opensource.org/licenses/bsd-license.php
+#
+# THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
+# WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
+#
+LVL="--quality 9"
+
+while [ $# != 0 ];do
+  case $1 in
+    -d)
+      ARGS+="--decompress "
+    ;;
+    -e)
+    ;;
+    -g)
+      ARGS+="--gap $2 "
+      shift
+    ;;
+    -l)
+      LVL="--quality $2 "
+      shift
+    ;;
+    -o)
+      ARGS+="--output $2 "
+      shift
+    ;;
+    *)
+      ARGS+="--input $1 "
+  esac
+
+shift
+done
+
+exec Brotli $ARGS $LVL