Move editor/build/truncate_files.py to tools/create_timestamp_file.py

We need this in more gyp files, so moving it to a common location

R=ahe@google.com

Review URL: https://codereview.chromium.org//247103002

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@35250 260f80e4-7a28-3924-810f-c04153c831b5
This commit is contained in:
ricow@google.com 2014-04-22 10:25:51 +00:00
parent 5f34d56f70
commit 60201b86e5

View file

@ -0,0 +1,16 @@
# Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file
# for details. All rights reserved. Use of this source code is governed by a
# BSD-style license that can be found in the LICENSE file.
import sys
import os
def main(args):
for file_name in args[1:]:
dir_name = os.path.dirname(file_name)
if not os.path.exists(dir_name):
os.mkdir(dir_name)
open(file_name, 'w').close()
if __name__ == '__main__':
sys.exit(main(sys.argv))