blob: 0402b2c5912eb1493069bf3eca374cf85b0d04ec [file] [log] [blame]
Hal Canary82c13312019-11-20 14:48:16 -05001#! /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 Malitaf11fd1f2019-12-17 11:32:21 -05006from __future__ import print_function
7
Hal Canary82c13312019-11-20 14:48:16 -05008import os
9import sys
10
Florin Malitaf11fd1f2019-12-17 11:32:21 -050011print(all(os.path.exists(a) for a in sys.argv[1:]))