Update .local/share/chezmoi/home/dot_local/bin/executable_provision
This commit is contained in:
parent
f64962b25b
commit
cfa37a318b
1 changed files with 1 additions and 1 deletions
|
@ -181,7 +181,7 @@ fi
|
|||
find /usr/local/src/hiawatha -maxdepth 1 -mindepth 1 -type d | while read FOLDER; do
|
||||
BASENAME="$(basename "$FOLDER")"
|
||||
# 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
|
||||
mkdir -p "$HOME/$BASENAME"
|
||||
fi
|
||||
|
|
Loading…
Reference in a new issue