Skip to content

Commit ca96aeb

Browse files
committed
Remove set -x option
Nice option that prints the command executed in a script but it leaks secrets...
1 parent 74b181e commit ca96aeb

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

project/scripts/genDocs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
# Usage:
44
# BOT_PASS=<dotty-bot password> ./genDocs
55

6-
set -ex
6+
set -e
77

88
# set extended glob, needed for rm everything but x
99
shopt -s extglob

project/scripts/sbt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
# Usage:
44
# ./sbt <cmd>
55

6-
set -ex
6+
set -e
77

88
CMD="$1"
99

project/scripts/sbtPublish

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
# Usage:
44
# SONATYPE_USER=<sonatype user> SONATYPE_PW=<sonatype pw> PGP_PW=<pgp pw> ./sbtPublish <publish cmd>
55

6-
set -ex
6+
set -e
77

88
# Release command:
99
RELEASE_CMD="$1"

0 commit comments

Comments
 (0)