aboutsummaryrefslogtreecommitdiffhomepage
path: root/gn/call.py
diff options
context:
space:
mode:
Diffstat (limited to 'gn/call.py')
-rw-r--r--gn/call.py12
1 files changed, 12 insertions, 0 deletions
diff --git a/gn/call.py b/gn/call.py
new file mode 100644
index 0000000000..edda821fe8
--- /dev/null
+++ b/gn/call.py
@@ -0,0 +1,12 @@
+#!/usr/bin/env python
+#
+# Copyright 2017 Google Inc.
+#
+# Use of this source code is governed by a BSD-style license that can be
+# found in the LICENSE file.
+
+import subprocess
+import sys
+
+subprocess.check_call(sys.argv[1:])
+