summaryrefslogtreecommitdiff
path: root/zephyr/zmake/bazel_main.py
blob: 3df8636c1a8d356f14b749be28decf419aff0621 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# Copyright 2023 The ChromiumOS Authors
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.

"""Entry point for Bazel execution.

Bazel can't use zmake/__main__.py as it puts the main in PYTHONPATH.
"""

import sys

from zmake import __main__


if __name__ == "__main__":
    sys.exit(__main__.main())