This fails in the Alpine container for some reason

This commit is contained in:
Tyler Starr 2024-01-31 13:30:52 -08:00 committed by GitHub
parent 94069341e7
commit c441617419
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -3,7 +3,7 @@
# Load the shell dotfiles (that are available)
for file in ~/.{path,bash_prompt,exports,aliases,functions,extra}; do
[ -r "$file" ] && [ -f "$file" ] && source "$file";
[ -f "$file" ] && source "$file";
done;
unset file;