~jameinel/launchpadlib/win32

« back to all changes in this revision

Viewing changes to bootstrap.py

  • Committer: John Arbash Meinel
  • Date: 2009-07-09 14:00:26 UTC
  • Revision ID: john@arbash-meinel.com-20090709140026-01s6j5lndb9jxpmo
Remove the symlink and replace it with a trivial subprocess invocation.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#!/usr/bin/env python
 
2
"""A trivial thunk to call the real bootstrap without needing a symlink."""
 
3
import sys
 
4
import subprocess
 
5
 
 
6
sys.exit(subprocess.call([sys.executable, '_bootstrap/bootstrap.py']))
 
7