Skip to content

Commit 6008c24

Browse files
authored
fix(build): build-install-yaml needs to tolerate $1 being unset. Oops. (#4319)
Signed-off-by: Flynn <emissary@flynn.kodachi.com>
1 parent 29cce2a commit 6008c24

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

hack/build-install-yaml.sh

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@
1515
# limitations under the License.
1616

1717
set -o errexit
18-
set -o nounset
1918
set -o pipefail
2019

2120
CHANNELS=(standard experimental)
@@ -25,6 +24,8 @@ if [ "$1" == "--experimental-only" ]; then
2524
shift
2625
fi
2726

27+
set -o nounset
28+
2829
readonly YEAR=$(date +"%Y")
2930

3031
mkdir -p release/

0 commit comments

Comments
 (0)