1 #!/usr/bin/env python 2 3 # Copyright (c) 2012 Google Inc. All rights reserved. 4 # Use of this source code is governed by a BSD-style license that can be 5 # found in the LICENSE file. 6 7 import os 8 import sys 9 10 """ 11 Create argv[1] iff it doesn't already exist. 12 """ 13 14 outfile = sys.argv[1] 15 if os.path.exists(outfile): 16 sys.exit() 17 open(outfile, "wb").close() 18