From 2f67e3efef6e8849144494914508b0ad933cff9b Mon Sep 17 00:00:00 2001 From: NIKHILY Date: Tue, 19 Dec 2017 09:27:03 +0530 Subject: [PATCH] Add support to run on Git Bash for Windows (MINGW) system. --- src/_utils/_git_secret_tools.sh | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/_utils/_git_secret_tools.sh b/src/_utils/_git_secret_tools.sh index a127b99f..b4346218 100644 --- a/src/_utils/_git_secret_tools.sh +++ b/src/_utils/_git_secret_tools.sh @@ -112,6 +112,10 @@ function _os_based { Linux) "$1_linux" "${@:2}" ;; + + MINGW*) + "$1_linux" "${@:2}" + ;; # TODO: add MS Windows support. # CYGWIN*|MINGW32*|MSYS*)