Edit

kc3-lang/angle/scripts/remove_files.py

Branch :

  • Show log

    Commit

  • Author : Shahbaz Youssefi
    Date : 2019-01-10 14:25:29
    Hash : 55ea947c
    Message : Roll Vulkan repos Bug: angleproject:3095 Change-Id: I6ae9d61304981223f9e2f1869ed32612aa38952c Reviewed-on: https://chromium-review.googlesource.com/c/1405714 Commit-Queue: Shahbaz Youssefi <syoussefi@chromium.org> Reviewed-by: Yuly Novikov <ynovikov@chromium.org>

  • scripts/remove_files.py
  • #!/usr/bin/python2
    #
    # Copyright 2019 The ANGLE Project Authors. All rights reserved.
    # Use of this source code is governed by a BSD-style license that can be
    # found in the LICENSE file.
    #
    # remove_files.py:
    #   This special action is used to cleanup old files from the build directory.
    #   Otherwise ANGLE will pick up the old file(s), causing build or runtime errors.
    #
    
    import glob
    import os
    import sys
    
    if len(sys.argv) < 3:
        print("Usage: " + sys.argv[0] + " <stamp_file> <remove_patterns>")
    
    stamp_file = sys.argv[1]
    
    for i in range(2, len(sys.argv)):
        remove_pattern = sys.argv[i]
        remove_files = glob.glob(remove_pattern)
        for f in remove_files:
            if os.path.isfile(f):
                os.remove(f)
    
    # touch a dummy file to keep a timestamp
    with open(stamp_file, "w") as f:
        f.write("blah")
        f.close()