Sha256: 54300c85e9f7e9a8ab7df5658f11b76f23c2d36ddc11215ee3b968b3a2d746ec

Contents?: true

Size: 676 Bytes

Versions: 16

Compression:

Stored size: 676 Bytes

Contents

#!/usr/bin/env python
# Copyright (c) 2011 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])
  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

16 entries across 16 versions & 3 rubygems

Version Path
libv8-3.11.8.17 vendor/v8/build/gyp/test/intermediate_dir/src/script.py
libv8-3.11.8.16 vendor/v8/build/gyp/test/intermediate_dir/src/script.py
libv8-3.11.8.13 vendor/v8/build/gyp/test/intermediate_dir/src/script.py
libv8-3.11.8.12 vendor/v8/build/gyp/test/intermediate_dir/src/script.py
sunrise-cms-0.5.0.rc1 vendor/bundle/ruby/1.9.1/gems/libv8-3.11.8.4/vendor/v8/build/gyp/test/intermediate_dir/src/script.py
libv8-3.11.8.11 vendor/v8/build/gyp/test/intermediate_dir/src/script.py
libv8-3.11.8.10 vendor/v8/build/gyp/test/intermediate_dir/src/script.py
libv8-3.11.8.9 vendor/v8/build/gyp/test/intermediate_dir/src/script.py
libv8-3.11.8.8 vendor/v8/build/gyp/test/intermediate_dir/src/script.py
libv8-3.11.8.7 vendor/v8/build/gyp/test/intermediate_dir/src/script.py
libv8-3.11.8.4 vendor/v8/build/gyp/test/intermediate_dir/src/script.py
libv8-freebsd-3.11.8.3 vendor/v8/build/gyp/test/intermediate_dir/src/script.py
libv8-3.11.8.3 vendor/v8/build/gyp/test/intermediate_dir/src/script.py
libv8-3.11.8.1 vendor/v8/build/gyp/test/intermediate_dir/src/script.py
libv8-3.11.8.0 vendor/v8/build/gyp/test/intermediate_dir/src/script.py
libv8-3.10.8.0 vendor/v8/build/gyp/test/intermediate_dir/src/script.py