This commit is contained in:
Flo 2024-12-21 03:50:02 +01:00
parent e898cb385c
commit 14400b73e1
2 changed files with 6 additions and 2 deletions

6
init
View File

@ -10,15 +10,21 @@ then
fi
# Update .aliases
denv_info_msg "[dev-env]: Update dev-env/.aliases"
$ENV_DIR/script/write_aliases
denv_success_msg "[dev-env]: Successfully updated dev-env/.aliases"
echo ""
# Update .profile
denv_info_msg "[dev-env]: Update ~/.profile"
$ENV_DIR/script/update_profile
denv_success_msg "[dev-env]: Successfully updated ~/.profile"
echo ""
# Clone all systems.
denv_info_msg "[dev-env]: Clone systems"
$ENV_DIR/script/clone
denv_info_msg "[dev-env]: Cloned systems"
echo ""
# Run init for all systems

View File

@ -9,8 +9,6 @@ if [ ! -f "$CONFIG_FILE" ]; then
exit 1
fi
denv_info_msg "[dev-env]: Cloning all systems defined in $CONFIG_FILE"
# Iterate through all lines in .systems configuration
while IFS=' ' read -r IDENTIFIER DIRECTORY GIT; do
# Skip comments and emtpy lines