summaryrefslogtreecommitdiff
path: root/deps/gyp/test/gyp-defines/echo.py
diff options
context:
space:
mode:
Diffstat (limited to 'deps/gyp/test/gyp-defines/echo.py')
-rw-r--r--deps/gyp/test/gyp-defines/echo.py11
1 files changed, 0 insertions, 11 deletions
diff --git a/deps/gyp/test/gyp-defines/echo.py b/deps/gyp/test/gyp-defines/echo.py
deleted file mode 100644
index b85add12f6..0000000000
--- a/deps/gyp/test/gyp-defines/echo.py
+++ /dev/null
@@ -1,11 +0,0 @@
-#!/usr/bin/env python
-
-# Copyright (c) 2012 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
-
-f = open(sys.argv[2], 'w+')
-f.write(sys.argv[1])
-f.close()