Whoops
This commit is contained in:
parent
b5b441ae53
commit
e83a70ac57
1 changed files with 5 additions and 2 deletions
7
setup.py
7
setup.py
|
|
@ -54,8 +54,9 @@ for source in source_files:
|
||||||
# present, and want to maintain it. Sometimes we just don't want to track a
|
# present, and want to maintain it. Sometimes we just don't want to track a
|
||||||
# subdirectory. You know.
|
# subdirectory. You know.
|
||||||
home_config = os.path.join(os.path.expanduser("~"), ".config")
|
home_config = os.path.join(os.path.expanduser("~"), ".config")
|
||||||
for source in os.listdir(os.path.join(root_directory, ".config")):
|
root_config = os.path.join(root_directory, ".config")
|
||||||
source = os.path.abspath(source)
|
for source in os.listdir(root_config):
|
||||||
|
source = os.path.abspath(os.path.join(root_config, source))
|
||||||
dst = os.path.join(home_config, os.path.split(source)[1])
|
dst = os.path.join(home_config, os.path.split(source)[1])
|
||||||
link_helper(source, dst)
|
link_helper(source, dst)
|
||||||
|
|
||||||
|
|
@ -101,3 +102,5 @@ if os.getenv("LOCALAPPDATA") is not None:
|
||||||
terminal_root
|
terminal_root
|
||||||
)
|
)
|
||||||
)
|
)
|
||||||
|
|
||||||
|
# Check to set the shell to fish, if we need to
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue