diff options
| author | Jacob McDonnell <jacob@jacobmcdonnell.com> | 2025-05-07 07:46:58 -0400 |
|---|---|---|
| committer | Jacob McDonnell <jacob@jacobmcdonnell.com> | 2025-05-07 07:46:58 -0400 |
| commit | 8afd96f693d9ac0daeb04afcfed0b5a8b4dd8062 (patch) | |
| tree | 099e58dc5770196a5ff3531e7b7ef7b6061cfe1c /dev-env | |
| parent | f2fc0ce4c59dd6a08fdb46b856cf337c3f8bf9f5 (diff) | |
Fixed Bug in dev-env that wiped .config
Diffstat (limited to 'dev-env')
| -rwxr-xr-x | dev-env | 7 |
1 files changed, 6 insertions, 1 deletions
@@ -22,8 +22,13 @@ for script in $scripts; do copy_file "$script" "$target/bin" done +configs="$(find ./.config -mindepth 1 -maxdepth 1 -type d)" +for config in $configs; do + log $config + copy_dir $config "$HOME/.config" +done + log "Copying Configs" -copy_dir .config $HOME copy_dir .emacs.d $HOME copy_file ".config/.profile" $HOME copy_file ".config/shells/zsh/.zshrc" $HOME |
