@@ -100,6 +100,15 @@ set -o errexit ## set -e : exit the script if any statement returns a non-true
100
100
# shellcheck source=lib/functions/artifacts/artifact-rootfs.sh
101
101
source " ${SRC} " /lib/functions/artifacts/artifact-rootfs.sh
102
102
103
+ # no errors tolerated. invoked before each sourced file to make sure.
104
+ # set -o pipefail # trace ERR through pipes - will be enabled "soon"
105
+ # set -o nounset ## set -u : exit the script if you try to use an uninitialised variable - one day will be enabled
106
+ set -o errtrace # trace ERR through - enabled
107
+ set -o errexit # # set -e : exit the script if any statement returns a non-true return value - enabled
108
+ # ## lib/functions/artifacts/artifact-uboot.sh
109
+ # shellcheck source=lib/functions/artifacts/artifact-uboot.sh
110
+ source " ${SRC} " /lib/functions/artifacts/artifact-uboot.sh
111
+
103
112
# no errors tolerated. invoked before each sourced file to make sure.
104
113
# set -o pipefail # trace ERR through pipes - will be enabled "soon"
105
114
# set -o nounset ## set -u : exit the script if you try to use an uninitialised variable - one day will be enabled
@@ -127,15 +136,6 @@ set -o errexit ## set -e : exit the script if any statement returns a non-true
127
136
# shellcheck source=lib/functions/artifacts/artifacts-reversion.sh
128
137
source " ${SRC} " /lib/functions/artifacts/artifacts-reversion.sh
129
138
130
- # no errors tolerated. invoked before each sourced file to make sure.
131
- # set -o pipefail # trace ERR through pipes - will be enabled "soon"
132
- # set -o nounset ## set -u : exit the script if you try to use an uninitialised variable - one day will be enabled
133
- set -o errtrace # trace ERR through - enabled
134
- set -o errexit # # set -e : exit the script if any statement returns a non-true return value - enabled
135
- # ## lib/functions/artifacts/artifact-uboot.sh
136
- # shellcheck source=lib/functions/artifacts/artifact-uboot.sh
137
- source " ${SRC} " /lib/functions/artifacts/artifact-uboot.sh
138
-
139
139
# no errors tolerated. invoked before each sourced file to make sure.
140
140
# set -o pipefail # trace ERR through pipes - will be enabled "soon"
141
141
# set -o nounset ## set -u : exit the script if you try to use an uninitialised variable - one day will be enabled
@@ -474,18 +474,18 @@ source "${SRC}"/lib/functions/compilation/packages/utils-dpkgdeb.sh
474
474
# set -o nounset ## set -u : exit the script if you try to use an uninitialised variable - one day will be enabled
475
475
set -o errtrace # trace ERR through - enabled
476
476
set -o errexit # # set -e : exit the script if any statement returns a non-true return value - enabled
477
- # ## lib/functions/compilation/patch/drivers-harness .sh
478
- # shellcheck source=lib/functions/compilation/patch/drivers-harness .sh
479
- source " ${SRC} " /lib/functions/compilation/patch/drivers-harness .sh
477
+ # ## lib/functions/compilation/patch/drivers_network .sh
478
+ # shellcheck source=lib/functions/compilation/patch/drivers_network .sh
479
+ source " ${SRC} " /lib/functions/compilation/patch/drivers_network .sh
480
480
481
481
# no errors tolerated. invoked before each sourced file to make sure.
482
482
# set -o pipefail # trace ERR through pipes - will be enabled "soon"
483
483
# set -o nounset ## set -u : exit the script if you try to use an uninitialised variable - one day will be enabled
484
484
set -o errtrace # trace ERR through - enabled
485
485
set -o errexit # # set -e : exit the script if any statement returns a non-true return value - enabled
486
- # ## lib/functions/compilation/patch/drivers_network .sh
487
- # shellcheck source=lib/functions/compilation/patch/drivers_network .sh
488
- source " ${SRC} " /lib/functions/compilation/patch/drivers_network .sh
486
+ # ## lib/functions/compilation/patch/drivers-harness .sh
487
+ # shellcheck source=lib/functions/compilation/patch/drivers-harness .sh
488
+ source " ${SRC} " /lib/functions/compilation/patch/drivers-harness .sh
489
489
490
490
# no errors tolerated. invoked before each sourced file to make sure.
491
491
# set -o pipefail # trace ERR through pipes - will be enabled "soon"
@@ -676,15 +676,6 @@ set -o errexit ## set -e : exit the script if any statement returns a non-true
676
676
# shellcheck source=lib/functions/general/extensions.sh
677
677
source " ${SRC} " /lib/functions/general/extensions.sh
678
678
679
- # no errors tolerated. invoked before each sourced file to make sure.
680
- # set -o pipefail # trace ERR through pipes - will be enabled "soon"
681
- # set -o nounset ## set -u : exit the script if you try to use an uninitialised variable - one day will be enabled
682
- set -o errtrace # trace ERR through - enabled
683
- set -o errexit # # set -e : exit the script if any statement returns a non-true return value - enabled
684
- # ## lib/functions/general/github-actions.sh
685
- # shellcheck source=lib/functions/general/github-actions.sh
686
- source " ${SRC} " /lib/functions/general/github-actions.sh
687
-
688
679
# no errors tolerated. invoked before each sourced file to make sure.
689
680
# set -o pipefail # trace ERR through pipes - will be enabled "soon"
690
681
# set -o nounset ## set -u : exit the script if you try to use an uninitialised variable - one day will be enabled
@@ -703,6 +694,15 @@ set -o errexit ## set -e : exit the script if any statement returns a non-true
703
694
# shellcheck source=lib/functions/general/git.sh
704
695
source " ${SRC} " /lib/functions/general/git.sh
705
696
697
+ # no errors tolerated. invoked before each sourced file to make sure.
698
+ # set -o pipefail # trace ERR through pipes - will be enabled "soon"
699
+ # set -o nounset ## set -u : exit the script if you try to use an uninitialised variable - one day will be enabled
700
+ set -o errtrace # trace ERR through - enabled
701
+ set -o errexit # # set -e : exit the script if any statement returns a non-true return value - enabled
702
+ # ## lib/functions/general/github-actions.sh
703
+ # shellcheck source=lib/functions/general/github-actions.sh
704
+ source " ${SRC} " /lib/functions/general/github-actions.sh
705
+
706
706
# no errors tolerated. invoked before each sourced file to make sure.
707
707
# set -o pipefail # trace ERR through pipes - will be enabled "soon"
708
708
# set -o nounset ## set -u : exit the script if you try to use an uninitialised variable - one day will be enabled
0 commit comments