7 lines
205 B
Bash
7 lines
205 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
mkdir .dotfiles &>/dev/null
|
||
|
|
||
|
for item in ${@:-update install_package_list run_system_scripts run_user_scripts link_home overlay}; do
|
||
|
echo "executed_step:$item" >> .dotfiles/pending_sync
|
||
|
done
|