Sha256: 7443be64a17b3ac5b1e75f567696a52fe1fa2bbb97e354605d3ad3f08aec0fe1

Contents?: true

Size: 698 Bytes

Versions: 25

Compression:

Stored size: 698 Bytes

Contents

#!/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.

# Takes 3 arguments. Writes the 1st argument to the file in the 2nd argument,
# and writes the absolute path to the file in the 2nd argument to the file in
# the 3rd argument.

import os
import shlex
import sys

if len(sys.argv) == 3 and ' ' in sys.argv[2]:
  sys.argv[2], fourth = shlex.split(sys.argv[2].replace('\\', '\\\\'))
  sys.argv.append(fourth)

#print >>sys.stderr, sys.argv

with open(sys.argv[2], 'w') as f:
  f.write(sys.argv[1])

with open(sys.argv[3], 'w') as f:
  f.write(os.path.abspath(sys.argv[2]))

Version data entries

25 entries across 25 versions & 4 rubygems

Version Path
libv8-3.16.14.19.1 vendor/gyp/test/intermediate_dir/src/script.py
tree-sitter-0.1.0 ext/tree-sitter/tree-sitter/externals/gyp/test/intermediate_dir/src/script.py
libv8-3.16.14.19 vendor/gyp/test/intermediate_dir/src/script.py
libv8-3.16.14.18 vendor/gyp/test/intermediate_dir/src/script.py
tree-sitter-0.0.1 ext/tree-sitter/tree-sitter/externals/gyp/test/intermediate_dir/src/script.py
arcabouco-0.2.13 vendor/bundle/gems/libv8-3.16.14.17/vendor/gyp/test/intermediate_dir/src/script.py
libv8-3.16.14.17 vendor/gyp/test/intermediate_dir/src/script.py
libv8-3.16.14.16 vendor/gyp/test/intermediate_dir/src/script.py
libv8-3.16.14.15 vendor/gyp/test/intermediate_dir/src/script.py
libv8-3.16.14.14 vendor/gyp/test/intermediate_dir/src/script.py
libv8-tmpfork-3.16.14.13 vendor/gyp/test/intermediate_dir/src/script.py
libv8-3.16.14.13 vendor/gyp/test/intermediate_dir/src/script.py
libv8-3.16.14.12 vendor/gyp/test/intermediate_dir/src/script.py
libv8-3.16.14.11 vendor/gyp/test/intermediate_dir/src/script.py
libv8-3.16.14.10 vendor/gyp/test/intermediate_dir/src/script.py
libv8-3.16.14.8 vendor/gyp/test/intermediate_dir/src/script.py
libv8-3.16.14.8.rc1 vendor/gyp/test/intermediate_dir/src/script.py
libv8-3.16.14.7 vendor/gyp/test/intermediate_dir/src/script.py
libv8-3.16.14.6 vendor/gyp/test/intermediate_dir/src/script.py
libv8-3.16.14.5 vendor/gyp/test/intermediate_dir/src/script.py