Skip to content

Commit

Permalink
base: disable bash tracing from install scripts.
Browse files Browse the repository at this point in the history
This level of detail pollutes the output during the build, while often
not being used. In addition, it can be easily turned back on in a local
setup for debugging purposes.

It should not influence any output seen by epics-in-docker users, so no
entry is specified in the changelog.
  • Loading branch information
henriquesimoes committed Dec 19, 2023
1 parent 249cada commit 321751a
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion base/install_area_detector.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/usr/bin/env bash

set -ex
set -e

. /opt/epics/install-functions.sh

Expand Down
2 changes: 1 addition & 1 deletion base/install_epics.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/bin/sh

set -ex
set -e

. /opt/epics/install-functions.sh

Expand Down
2 changes: 1 addition & 1 deletion base/install_modules.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/usr/bin/env bash

set -ex
set -e

. /opt/epics/install-functions.sh

Expand Down
2 changes: 1 addition & 1 deletion base/install_motor.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/usr/bin/env bash

set -ex
set -e

. /opt/epics/install-functions.sh

Expand Down

0 comments on commit 321751a

Please sign in to comment.