brettw@chromium.org | 67bb861 | 2013-11-08 20:51:40 +0000 | [diff] [blame] | 1 | #!/usr/bin/env bash |
| 2 | # Copyright 2013 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 | base_dir=$(dirname "$0") |
| 7 | |
Jamie Madill | 67574d7 | 2021-08-18 18:12:25 +0000 | [diff] [blame] | 8 | # In git bash on Windows, invoke the batch file. |
| 9 | if [ "$(expr "$(uname -s)" : "^MINGW64_NT")" == "10" ]; then |
| 10 | gn.bat "$@" |
| 11 | exit |
| 12 | fi |
| 13 | |
Mirko Bonadei | ea4e399 | 2021-04-14 18:05:29 +0000 | [diff] [blame] | 14 | PYTHONDONTWRITEBYTECODE=1 exec python3 "$base_dir/gn.py" "$@" |