You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
379 B
20 lines
379 B
# vim: set fileencoding=utf-8 :
|
|
|
|
# Sync test 2.0
|
|
# Copyleft 2018, Volker Birk
|
|
|
|
# this file is under GNU General Public License 3.0
|
|
|
|
|
|
import os
|
|
|
|
|
|
def setup(path):
|
|
cwd = os.getcwd();
|
|
|
|
os.makedirs(path, exist_ok=True)
|
|
os.chdir(path)
|
|
lib_path = os.path.join(os.environ["HOME"], "lib")
|
|
Library_path = os.path.join(os.environ["HOME"], "Library")
|
|
|
|
os.chdir(cwd)
|
|
|