mauvehed's dotfiles for personal and work environments
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

update git-update script

mauvehed 534dd433 02aefa49

+2 -2
+2 -2
dot_local/bin/executable_git-update
··· 7 7 NC='\033[0m' # No Color 8 8 9 9 # Base directory 10 - BASE_DIR=~/gitwork/github 10 + BASE_DIR=~/gitwork 11 11 12 12 # Check if the base directory exists 13 13 if [ ! -d "$BASE_DIR" ]; then ··· 46 46 } 47 47 48 48 # Main script 49 - for directory in "$BASE_DIR"/*/*; do 49 + for directory in "$BASE_DIR"/*/*/*; do 50 50 if [ -d "$directory" ]; then 51 51 # Change to the repository directory 52 52 cd "$directory" || { echo -e "${RED}Failed to change directory to $directory.${NC}"; continue; }