mirror of
https://github.com/dolthub/dolt.git
synced 2026-05-01 20:00:22 -05:00
e90bfcbd2a
brew install yarn
14 lines
289 B
Python
Executable File
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()
|