• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
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
7import os
8import sys
9
10"""
11Create argv[1] iff it doesn't already exist.
12"""
13
14outfile = sys.argv[1]
15if os.path.exists(outfile):
16  sys.exit()
17open(outfile, "wb").close()
18