File tree Expand file tree Collapse file tree 4 files changed +20
-0
lines changed Expand file tree Collapse file tree 4 files changed +20
-0
lines changed Original file line number Diff line number Diff line change 11#! /usr/bin/env bash
22
3+ # Exit immediately if a command exits with a non-zero status.
34set -e
5+ # # Treat undefined variables as an error
6+ set -u
7+ # fails if any part of a pipeline (|) fails
8+ set -o pipefail
49
510# # options: "smart, complete_rebuild"
611export COMPILE_TYPE=" smart"
Original file line number Diff line number Diff line change 11#! /usr/bin/env bash
22
3+ # Exit immediately if a command exits with a non-zero status.
34set -e
5+ # # Treat undefined variables as an error
6+ set -u
7+ # fails if any part of a pipeline (|) fails
8+ set -o pipefail
49
510if [ ! -d " toolchains" ]; then
611 mkdir -p toolchains
Original file line number Diff line number Diff line change 11#! /usr/bin/env bash
22
3+ # Exit immediately if a command exits with a non-zero status.
34set -e
5+ # # Treat undefined variables as an error
6+ set -u
7+ # fails if any part of a pipeline (|) fails
8+ set -o pipefail
49
510# # options: "smart, complete_rebuild"
611export COMPILE_TYPE=" smart"
Original file line number Diff line number Diff line change 11#! /usr/bin/env bash
22
3+ # Exit immediately if a command exits with a non-zero status.
34set -e
5+ # # Treat undefined variables as an error
6+ set -u
7+ # fails if any part of a pipeline (|) fails
8+ set -o pipefail
49
510# # options: "smart, complete_rebuild"
611export COMPILE_TYPE=" smart"
You can’t perform that action at this time.
0 commit comments