Update .local/share/chezmoi/home/dot_local/bin/executable_provision, .local/bin/provision
This commit is contained in:
parent
e73c64905d
commit
6e1a2fa298
2 changed files with 3 additions and 5 deletions
|
@ -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' ]]; 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
|
||||||
|
@ -205,4 +205,4 @@ find "$HOME/.local/bin" -maxdepth 1 -mindepth 1 -type f | while read BINFILE; do
|
||||||
done
|
done
|
||||||
|
|
||||||
### Chezmoi
|
### Chezmoi
|
||||||
echo "Now run chezmoi init followed by chezmoi apply"
|
echo 'Now run `chezmoi init` followed by `chezmoi apply`'
|
||||||
|
|
|
@ -1,7 +1,5 @@
|
||||||
#!/usr/bin/env bash
|
#!/usr/bin/env bash
|
||||||
|
|
||||||
{{- includeTemplate "universal/logg" }}
|
|
||||||
|
|
||||||
set -eox pipefail
|
set -eox pipefail
|
||||||
|
|
||||||
### Qubes dom0
|
### Qubes dom0
|
||||||
|
@ -207,4 +205,4 @@ find "$HOME/.local/bin" -maxdepth 1 -mindepth 1 -type f | while read BINFILE; do
|
||||||
done
|
done
|
||||||
|
|
||||||
### Chezmoi
|
### Chezmoi
|
||||||
logg 'Now run `chezmoi init` followed by `chezmoi apply`'
|
echo 'Now run `chezmoi init` followed by `chezmoi apply`'
|
||||||
|
|
Loading…
Reference in a new issue