Files
dolt/samples/js/splore/build.py
T
Erik Arvidsson e90bfcbd2a Switch to Yarn (#3092)
brew install yarn
2017-01-20 11:42:32 -08:00

14 lines
289 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 subprocess
def main():
subprocess.check_call(['yarn'], shell=False)
if __name__ == "__main__":
main()