summaryrefslogtreecommitdiff
path: root/deps/gyp/test/generator-output/rules/copy-file.py
diff options
context:
space:
mode:
Diffstat (limited to 'deps/gyp/test/generator-output/rules/copy-file.py')
-rwxr-xr-xdeps/gyp/test/generator-output/rules/copy-file.py12
1 files changed, 0 insertions, 12 deletions
diff --git a/deps/gyp/test/generator-output/rules/copy-file.py b/deps/gyp/test/generator-output/rules/copy-file.py
deleted file mode 100755
index 938c336adb..0000000000
--- a/deps/gyp/test/generator-output/rules/copy-file.py
+++ /dev/null
@@ -1,12 +0,0 @@
-#!/usr/bin/env python
-
-# Copyright (c) 2009 Google Inc. 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
-
-contents = open(sys.argv[1], 'r').read()
-open(sys.argv[2], 'wb').write(contents)
-
-sys.exit(0)