blob: 811eb5555a9e956dabec97cdb60768196f9ee01b [file] [log] [blame]
# Copyright 2012 The ChromiumOS Authors
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
"""Print the environment allowlist."""
import sys
from chromite.lib import constants
def main(argv):
if argv:
sys.exit(f"{sys.argv[0]}: {__doc__}")
print(" ".join(constants.CHROOT_ENVIRONMENT_ALLOWLIST))