Skip to content

Commit 8907ba8

Browse files
authored
Output errors to stderr by default when VERBOSE=true (#605)
1 parent 80af99b commit 8907ba8

9 files changed

Lines changed: 9 additions & 9 deletions

File tree

ga/23.0.0.12/kernel/helpers/build/configure.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ else
2121
fi
2222

2323
if [ "$VERBOSE" != "true" ]; then
24-
exec &>/dev/null
24+
exec >/dev/null
2525
fi
2626

2727
set -Eeox pipefail

ga/23.0.0.12/kernel/helpers/build/infinispan-client-setup.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
# See the License for the specific language governing permissions and
1414
# limitations under the License.
1515
if [ "$VERBOSE" != "true" ]; then
16-
exec &>/dev/null
16+
exec >/dev/null
1717
fi
1818

1919
set -Eeox pipefail

ga/23.0.0.12/kernel/helpers/build/populate_scc.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
# See the License for the specific language governing permissions and
1414
# limitations under the License.
1515
if [ "$VERBOSE" != "true" ]; then
16-
exec &>/dev/null
16+
exec >/dev/null
1717
fi
1818

1919
set -Eeox pipefail

ga/24.0.0.3/kernel/helpers/build/configure.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ else
2121
fi
2222

2323
if [ "$VERBOSE" != "true" ]; then
24-
exec &>/dev/null
24+
exec >/dev/null
2525
fi
2626

2727
set -Eeox pipefail

ga/24.0.0.3/kernel/helpers/build/infinispan-client-setup.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
# See the License for the specific language governing permissions and
1414
# limitations under the License.
1515
if [ "$VERBOSE" != "true" ]; then
16-
exec &>/dev/null
16+
exec >/dev/null
1717
fi
1818

1919
set -Eeox pipefail

ga/24.0.0.3/kernel/helpers/build/populate_scc.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
# See the License for the specific language governing permissions and
1414
# limitations under the License.
1515
if [ "$VERBOSE" != "true" ]; then
16-
exec &>/dev/null
16+
exec >/dev/null
1717
fi
1818

1919
set -Eeox pipefail

ga/latest/kernel/helpers/build/configure.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ else
2121
fi
2222

2323
if [ "$VERBOSE" != "true" ]; then
24-
exec &>/dev/null
24+
exec >/dev/null
2525
fi
2626

2727
set -Eeox pipefail

ga/latest/kernel/helpers/build/infinispan-client-setup.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
# See the License for the specific language governing permissions and
1414
# limitations under the License.
1515
if [ "$VERBOSE" != "true" ]; then
16-
exec &>/dev/null
16+
exec >/dev/null
1717
fi
1818

1919
set -Eeox pipefail

ga/latest/kernel/helpers/build/populate_scc.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
# See the License for the specific language governing permissions and
1414
# limitations under the License.
1515
if [ "$VERBOSE" != "true" ]; then
16-
exec &>/dev/null
16+
exec >/dev/null
1717
fi
1818

1919
set -Eeox pipefail

0 commit comments

Comments
 (0)