mirror of
https://github.com/dolthub/dolt.git
synced 2026-05-03 11:30:28 -05:00
23 lines
581 B
Python
Executable File
23 lines
581 B
Python
Executable File
#!/usr/bin/python
|
|
|
|
# Copyright 2016 Attic Labs, Inc. All rights reserved.
|
|
# Licensed under the Apache License, version 2.0:
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
import os.path, subprocess, sys
|
|
|
|
sys.path.append(os.path.abspath('../../../tools'))
|
|
from noms.pushd import pushd
|
|
|
|
def main():
|
|
with pushd('../../../js/noms'):
|
|
subprocess.check_call(['npm', 'install'], shell=False)
|
|
|
|
with pushd('../'):
|
|
subprocess.check_call(['npm', 'install'], shell=False)
|
|
|
|
subprocess.check_call(['npm', 'install'], shell=False)
|
|
|
|
if __name__ == "__main__":
|
|
main()
|