OLD | NEW |
---|---|
(Empty) | |
1 #!/usr/bin/env bash | |
2 # Copyright 2014 The Chromium Authors. All rights reserved. | |
3 # Use of this source code is governed by a BSD-style license that can be | |
4 # found in the LICENSE file. | |
5 | |
6 # This apparently useless file enables windows users to get access to | |
7 # depot_tools' built-in bash.exe. When git executes this file as in `git bash`, | |
8 # it has bash and related tools pre-installed in the environment. Therefore even | |
9 # though 'bash' from cmd.exe doesn't work, bash here does work as you'd expect. | |
10 | |
11 bash "$@" | |
OLD | NEW |