Update config file location
This commit is contained in:
parent
1f862145ea
commit
0832e1512a
4 changed files with 16 additions and 9 deletions
|
@ -1,3 +0,0 @@
|
||||||
[PowerShell]
|
|
||||||
in="src/PowerShell/profile.ps1"
|
|
||||||
out="~/Documents/WindowsPowerShell"
|
|
|
@ -1,5 +1,13 @@
|
||||||
import pathlib
|
import pathlib
|
||||||
|
|
||||||
|
|
||||||
def get_io(conf):
|
def make_abs_path(path, root):
|
||||||
return pathlib.Path(conf.get("in")).expanduser(), pathlib.Path(conf.get("out")).expanduser()
|
if not path.is_absolute():
|
||||||
|
return root.joinpath(path)
|
||||||
|
return path
|
||||||
|
|
||||||
|
def get_io(conf, root):
|
||||||
|
return (
|
||||||
|
make_abs_path(pathlib.Path(conf.get("in")).expanduser(), root),
|
||||||
|
make_abs_path(pathlib.Path(conf.get("out")).expanduser(), root),
|
||||||
|
)
|
||||||
|
|
|
@ -32,6 +32,8 @@ except FileNotFoundError:
|
||||||
log.error(f"Configuration file <{args.config}> does not exist.")
|
log.error(f"Configuration file <{args.config}> does not exist.")
|
||||||
sys.exit(1)
|
sys.exit(1)
|
||||||
|
|
||||||
|
_root = args.config.parent
|
||||||
|
|
||||||
for _name, _conf in config.items():
|
for _name, _conf in config.items():
|
||||||
match _name.lower():
|
match _name.lower():
|
||||||
case "winget":
|
case "winget":
|
||||||
|
@ -46,7 +48,7 @@ for _name, _conf in config.items():
|
||||||
log.info(f"> Installing {_package} using winget.")
|
log.info(f"> Installing {_package} using winget.")
|
||||||
subprocess.run(("winget", "install", _package))
|
subprocess.run(("winget", "install", _package))
|
||||||
case _:
|
case _:
|
||||||
_in, _out = get_io(_conf)
|
_in, _out = get_io(_conf, _root)
|
||||||
log.info(f"Installing {_name} configuration from <{_in}> to <{_out}>.")
|
log.info(f"Installing {_name} configuration from <{_in}> to <{_out}>.")
|
||||||
if not _in.is_file():
|
if not _in.is_file():
|
||||||
log.error(f"> {_name} configuration <{_in}> could not be found.")
|
log.error(f"> {_name} configuration <{_in}> could not be found.")
|
||||||
|
|
|
@ -5,13 +5,13 @@ packages = [
|
||||||
]
|
]
|
||||||
|
|
||||||
[PowerShell]
|
[PowerShell]
|
||||||
in="src/PowerShell/profile.ps1"
|
in="PowerShell/profile.ps1"
|
||||||
out="~/Documents/WindowsPowerShell/profile.ps1"
|
out="~/Documents/WindowsPowerShell/profile.ps1"
|
||||||
|
|
||||||
[Git]
|
[Git]
|
||||||
in="src/Git/gitconfig-win"
|
in="Git/gitconfig-win"
|
||||||
out="~/.gitconfig"
|
out="~/.gitconfig"
|
||||||
|
|
||||||
[Neovim]
|
[Neovim]
|
||||||
in="src/Neovim/init.vim"
|
in="Neovim/init.vim"
|
||||||
out="~/AppData/Local/nvim/init.vim"
|
out="~/AppData/Local/nvim/init.vim"
|
Loading…
Reference in a new issue