Skip to content

Commit b2853f8

Browse files
tegonal-botrobstoll
authored andcommitted
update files of remote tegonal-scripts to version v4.9.0 via gt
1 parent 09c6aac commit b2853f8

37 files changed

Lines changed: 96 additions & 96 deletions

.gt/remotes/tegonal-scripts/pulled.tsv

Lines changed: 36 additions & 36 deletions
Large diffs are not rendered by default.

lib/tegonal-scripts/src/ci/install-shellcheck.sh

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
# \__/\__/\_, /\___/_//_/\_,_/_/ It is licensed under Apache License 2.0
77
# /___/ Please report bugs and contribute back your improvements
88
#
9-
# Version: v4.8.1
9+
# Version: v4.9.0
1010
####### Description #############
1111
#
1212
# installs shellcheck v0.10.0 into $HOME/.local/lib
@@ -42,17 +42,18 @@ function die() {
4242
exit 1
4343
}
4444

45-
declare currentDir
4645
currentDir=$(pwd)
4746
tmpDir=$(mktemp -d -t download-shellcheck-XXXXXXXXXX) || die "could not create a temp directory"
4847
cd "$tmpDir"
49-
shellcheckVersion="v0.10.0"
48+
shellcheckVersion="v0.11.0"
5049
tarFile="shellcheck-$shellcheckVersion.linux.x86_64.tar.xz"
51-
expectedSha="6c881ab0698e4e6ea235245f22832860544f17ba386442fe7e9d629f8cbedf87 $tarFile"
50+
expectedSha="8c3be12b05d5c177a04c29e3c78ce89ac86f1595681cab149b65b97c4e227198 $tarFile"
5251
echo "$expectedSha" >"$tarFile.sha256"
5352

53+
url="https://github.com/koalaman/shellcheck/releases/download/$shellcheckVersion/$tarFile"
54+
echo "going to download shellcheck $shellcheckVersion from: $url"
5455
if command -v curl >/dev/null; then
55-
curl -L -O "https://github.com/koalaman/shellcheck/releases/download/$shellcheckVersion/$tarFile"
56+
curl --fail -L -O "$url" || die "could not download shellcheck"
5657
else
5758
# if curl does not exist, then we try it with wget
5859
wget --no-verbose "https://github.com/koalaman/shellcheck/releases/download/$shellcheckVersion/$tarFile"

lib/tegonal-scripts/src/qa/run-shellcheck.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
# \__/\__/\_, /\___/_//_/\_,_/_/ It is licensed under Apache License 2.0
77
# /___/ Please report bugs and contribute back your improvements
88
#
9-
# Version: v4.8.1
9+
# Version: v4.9.0
1010
####### Description #############
1111
#
1212
# function which searches for *.sh files within defined paths (directories or a single *.sh) and

lib/tegonal-scripts/src/releasing/common-constants.source.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
# \__/\__/\_, /\___/_//_/\_,_/_/ It is licensed under European Union Public License 1.2
88
# /___/ Please report bugs and contribute back your improvements
99
#
10-
# Version: v4.8.1
10+
# Version: v4.9.0
1111
####### Description #############
1212
#
1313
# constants intended to be sourced into a function

lib/tegonal-scripts/src/releasing/deduce-next-version.source.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
# \__/\__/\_, /\___/_//_/\_,_/_/ It is licensed under Apache License 2.0
88
# /___/ Please report bugs and contribute back your improvements
99
#
10-
# Version: v4.8.1
10+
# Version: v4.9.0
1111
####### Description #############
1212
#
1313
# intended to be sourced into a function which expects params version and nextVersion

lib/tegonal-scripts/src/releasing/pre-release-checks-git.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
# \__/\__/\_, /\___/_//_/\_,_/_/ It is licensed under Apache License 2.0
77
# /___/ Please report bugs and contribute back your improvements
88
#
9-
# Version: v4.8.1
9+
# Version: v4.9.0
1010
####### Description #############
1111
#
1212
# Checks that releasing a certain version (creating a corresponding git tag) makes sense: We check:
@@ -34,7 +34,7 @@
3434
set -euo pipefail
3535
shopt -s inherit_errexit || { echo >&2 "please update to bash 5, see errors above" && exit 1; }
3636
unset CDPATH
37-
export TEGONAL_SCRIPTS_VERSION='v4.8.1'
37+
export TEGONAL_SCRIPTS_VERSION='v4.9.0'
3838

3939
if ! [[ -v dir_of_tegonal_scripts ]]; then
4040
dir_of_tegonal_scripts="$(cd -- "$(dirname -- "${BASH_SOURCE[0]:-$0}")" >/dev/null && pwd 2>/dev/null)/.."

lib/tegonal-scripts/src/releasing/prepare-files-next-dev-cycle.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
# \__/\__/\_, /\___/_//_/\_,_/_/ It is licensed under Apache License 2.0
77
# /___/ Please report bugs and contribute back your improvements
88
#
9-
# Version: v4.8.1
9+
# Version: v4.9.0
1010
####### Description #############
1111
#
1212
# Prepare the next dev cycle for files based on conventions:
@@ -60,7 +60,7 @@
6060
set -euo pipefail
6161
shopt -s inherit_errexit || { echo >&2 "please update to bash 5, see errors above" && exit 1; }
6262
unset CDPATH
63-
export TEGONAL_SCRIPTS_VERSION='v4.8.1'
63+
export TEGONAL_SCRIPTS_VERSION='v4.9.0'
6464

6565
if ! [[ -v dir_of_tegonal_scripts ]]; then
6666
dir_of_tegonal_scripts="$(cd -- "$(dirname -- "${BASH_SOURCE[0]:-$0}")" >/dev/null && pwd 2>/dev/null)/.."

lib/tegonal-scripts/src/releasing/prepare-next-dev-cycle-template.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
# \__/\__/\_, /\___/_//_/\_,_/_/ It is licensed under Apache License 2.0
77
# /___/ Please report bugs and contribute back your improvements
88
#
9-
# Version: v4.8.1
9+
# Version: v4.9.0
1010
####### Description #############
1111
#
1212
# Prepares the next dev cycle based on conventions:
@@ -61,7 +61,7 @@
6161
set -euo pipefail
6262
shopt -s inherit_errexit || { echo >&2 "please update to bash 5, see errors above" && exit 1; }
6363
unset CDPATH
64-
export TEGONAL_SCRIPTS_VERSION='v4.8.1'
64+
export TEGONAL_SCRIPTS_VERSION='v4.9.0'
6565

6666
if ! [[ -v dir_of_tegonal_scripts ]]; then
6767
dir_of_tegonal_scripts="$(cd -- "$(dirname -- "${BASH_SOURCE[0]:-$0}")" >/dev/null && pwd 2>/dev/null)/.."

lib/tegonal-scripts/src/releasing/release-files.sh

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
# \__/\__/\_, /\___/_//_/\_,_/_/ It is licensed under Apache License 2.0
77
# /___/ Please report bugs and contribute back your improvements
88
#
9-
# Version: v4.8.1
9+
# Version: v4.9.0
1010
####### Description #############
1111
#
1212
# Releasing files based on conventions:
@@ -40,13 +40,13 @@
4040
# "$dir_of_tegonal_scripts/releasing/release-files.sh" -v v0.1.0 -k "0x945FE615904E5C85" --sign-fn findScripts
4141
#
4242
# # releases version v0.1.0 using the key 0x945FE615904E5C85 for signing and function findScripts to find the files which
43-
# ## should be signed (and thus released). Moreover, searches for additional occurrences where the version should be
43+
# # should be signed (and thus released). Moreover, searches for additional occurrences where the version should be
4444
# # replaced via the specified pattern
4545
# "$dir_of_tegonal_scripts/releasing/release-files.sh" \
4646
# -v v0.1.0 -k "0x945FE615904E5C85" --sign-fn findScripts \
4747
# -p "(TEGONAL_SCRIPTS_VERSION=['\"])[^'\"]+(['\"])"
4848
#
49-
# function specialBeforePr(){
49+
# function specialBeforePr() {
5050
# beforePr && echo "imagine some additional work"
5151
# }
5252
# # make the function visible to release-files.sh / not necessary if you source prepare-files-next-dev-cycle.sh
@@ -58,7 +58,6 @@
5858
# -v v0.1.0 -k "0x945FE615904E5C85" --sign-fn findScripts \
5959
# --before-pr-fn specialBeforePr
6060
#
61-
#
6261
# # in case you want to provide your own release.sh and only want to do some pre-configuration
6362
# # then you might want to source it instead
6463
# sourceOnce "$dir_of_tegonal_scripts/releasing/release-files.sh"
@@ -76,7 +75,7 @@
7675
set -euo pipefail
7776
shopt -s inherit_errexit || { echo >&2 "please update to bash 5, see errors above" && exit 1; }
7877
unset CDPATH
79-
export TEGONAL_SCRIPTS_VERSION='v4.8.1'
78+
export TEGONAL_SCRIPTS_VERSION='v4.9.0'
8079

8180
if ! [[ -v dir_of_tegonal_scripts ]]; then
8281
dir_of_tegonal_scripts="$(cd -- "$(dirname -- "${BASH_SOURCE[0]:-$0}")" >/dev/null && pwd 2>/dev/null)/.."

lib/tegonal-scripts/src/releasing/release-template.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
# \__/\__/\_, /\___/_//_/\_,_/_/ It is licensed under Apache License 2.0
77
# /___/ Please report bugs and contribute back your improvements
88
#
9-
# Version: v4.8.1
9+
# Version: v4.9.0
1010
####### Description #############
1111
#
1212
# Defines a release process template where some conventions are defined:
@@ -80,7 +80,7 @@
8080
set -euo pipefail
8181
shopt -s inherit_errexit || { echo >&2 "please update to bash 5, see errors above" && exit 1; }
8282
unset CDPATH
83-
export TEGONAL_SCRIPTS_VERSION='v4.8.1'
83+
export TEGONAL_SCRIPTS_VERSION='v4.9.0'
8484

8585
if ! [[ -v dir_of_tegonal_scripts ]]; then
8686
dir_of_tegonal_scripts="$(cd -- "$(dirname -- "${BASH_SOURCE[0]:-$0}")" >/dev/null && pwd 2>/dev/null)/.."

0 commit comments

Comments
 (0)