mirror of
https://github.com/dolthub/dolt.git
synced 2026-02-11 18:49:14 -06:00
16 lines
335 B
Python
16 lines
335 B
Python
#!/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
|
|
from contextlib import contextmanager
|
|
|
|
@contextmanager
|
|
def pushd(path):
|
|
currentDir = os.getcwd()
|
|
os.chdir(path)
|
|
yield
|
|
os.chdir(currentDir)
|