Fix: set -u breaks X startup
as other scripts are relying on unset variables
This commit is contained in:
parent
419dbdfc27
commit
bfeb8b689f
1 changed files with 1 additions and 1 deletions
|
@ -1,5 +1,5 @@
|
|||
#!/usr/bin/env bash
|
||||
set -euo pipefail
|
||||
set -eo pipefail
|
||||
|
||||
[[ -d ${HOME}/.xprofile.d ]] && {
|
||||
for lc in $(find ${HOME}/.xprofile.d -name '*.zsh' -o -name '*.sh'); do
|
||||
|
|
Loading…
Reference in a new issue