| #!/usr/bin/env python3 | |
| # | |
| # TODO(dpranke): Right now this is a stub file that relies on | |
| # you having `node` already in your environment, and installs | |
| # packages by downloading them from npmjs.com. Fix this to | |
| # pull down the appropriate binaries from CIPD and/or packages from | |
| # a GCS bucket. | |
| import argparse | |
| import os | |
| import subprocess | |
| import sys | |
| SRC_ROOT = os.path.dirname(os.path.dirname(__file__)) | |
| parser = argparse.ArgumentParser() | |
| parser.parse_args() | |
| sys.exit(0) |