Sha256: f2b7058811872ced8101668e9d71e58753f2e8029edf635865c257c8b82c2ea1
Contents?: true
Size: 461 Bytes
Versions: 26
Compression:
Stored size: 461 Bytes
Contents
#!/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 # TODO(mark): sys.path manipulation is some temporary testing stuff. try: import gyp except ImportError, e: import os.path sys.path.append(os.path.join(os.path.dirname(sys.argv[0]), 'pylib')) import gyp if __name__ == '__main__': sys.exit(gyp.script_main())
Version data entries
26 entries across 26 versions & 4 rubygems