Hal Canary | 82c1331 | 2019-11-20 14:48:16 -0500 | [diff] [blame] | 1 | #! /usr/bin/env python |
2 | # Copyright 2019 Google LLC. | ||||
3 | # Use of this source code is governed by a BSD-style license that can be | ||||
4 | # found in the LICENSE file. | ||||
5 | |||||
Florin Malita | f11fd1f | 2019-12-17 11:32:21 -0500 | [diff] [blame] | 6 | from __future__ import print_function |
7 | |||||
Hal Canary | 82c1331 | 2019-11-20 14:48:16 -0500 | [diff] [blame] | 8 | import os |
9 | import sys | ||||
10 | |||||
Florin Malita | f11fd1f | 2019-12-17 11:32:21 -0500 | [diff] [blame] | 11 | print(all(os.path.exists(a) for a in sys.argv[1:])) |