blob: ee98e2b0692304c102861cc60f461222654068a6 [file] [log] [blame]
#!/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)