Skip to content

Commit

Permalink
Replaced Bash source with dot
Browse files Browse the repository at this point in the history
  • Loading branch information
dmotte committed Nov 14, 2023
1 parent 23f8286 commit cebddc8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions build/startup.sh
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ set -e
for i in /opt/startup-early/*.sh; do
[ -f "$i" ] || continue
# shellcheck source=/dev/null
source "$i"
. "$i"
done

################################# CUSTOM USER ##################################
Expand Down Expand Up @@ -93,7 +93,7 @@ rm -f /tmp/.X0-lock
for i in /opt/startup-late/*.sh; do
[ -f "$i" ] || continue
# shellcheck source=/dev/null
source "$i"
. "$i"
done

############################## START SUPERVISORD ###############################
Expand Down

0 comments on commit cebddc8

Please sign in to comment.