blob: 2fecb61d2930f7a98f84467b3d33beab4e74fd5b [file] [log] [blame]
# Copyright (c) 2012 The Chromium OS Authors. All rights reserved.
# 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))