Update .local/share/chezmoi/home/dot_local/bin/executable_provision

This commit is contained in:
Brian Zalewski 2022-12-02 05:28:04 +00:00
parent f64962b25b
commit cfa37a318b

View file

@ -181,7 +181,7 @@ fi
find /usr/local/src/hiawatha -maxdepth 1 -mindepth 1 -type d | while read FOLDER; do find /usr/local/src/hiawatha -maxdepth 1 -mindepth 1 -type d | while read FOLDER; do
BASENAME="$(basename "$FOLDER")" BASENAME="$(basename "$FOLDER")"
# Prevent initial-scaffolding of OS-specific files since Chezmoi will handle them # Prevent initial-scaffolding of OS-specific files since Chezmoi will handle them
if [[ "$BASENAME" != 'AppData' ]] && [[ "$BASENAME" != 'Library' ]] && [ "$BASENAME" != '.git' ]; then if [ "$BASENAME" != 'AppData' ] && [ "$BASENAME" != 'Library' ] && [ "$BASENAME" != '.git' ]; then
if [ ! -d "$HOME/$BASENAME" ]; then if [ ! -d "$HOME/$BASENAME" ]; then
mkdir -p "$HOME/$BASENAME" mkdir -p "$HOME/$BASENAME"
fi fi