Fix non-functioning bash profile script
This commit is contained in:
parent
e1968d7af1
commit
c170990a6d
1 changed files with 1 additions and 2 deletions
|
@ -7,11 +7,10 @@ env:
|
||||||
path: []
|
path: []
|
||||||
script:
|
script:
|
||||||
- value: |
|
- value: |
|
||||||
find {/etc,~/.config}/bash/conf.d/* -print0 2> /dev/null |
|
|
||||||
while IFS= read -r -d '' file;
|
while IFS= read -r -d '' file;
|
||||||
do
|
do
|
||||||
. "$file";
|
. "$file";
|
||||||
done;
|
done < <(find {/etc,~/.config}/bash/conf.d/* -print0 2> /dev/null);
|
||||||
if: match .Shell "bash"
|
if: match .Shell "bash"
|
||||||
- value: |
|
- value: |
|
||||||
# Profile Files
|
# Profile Files
|
||||||
|
|
Loading…
Reference in a new issue