Change "golang" to "Golang"

This commit is contained in:
neuroevolutus 2023-03-12 13:54:32 -05:00
parent 18a5861477
commit 72a5ae7884
4 changed files with 6 additions and 6 deletions

View File

@ -1,6 +1,6 @@
# Development
1. Install (golang)[https://golang.org/]
1. Install (Golang)[https://golang.org/]
1. Run `scripts/devtools.sh` to install the required devtools
2. Run `make [local] vendor` to install the vendor dependencies
2. Run `make [local] test` to ensure you can run the existing tests

2
debian/changelog vendored
View File

@ -103,7 +103,7 @@ yq (4.16.2) focal; urgency=medium
* Improved extract-checksum.sh
* Bump github.com/spf13/cobra from 1.2.1 to 1.3.0 (#1039)
* enable more linters (#1043)
* Bump golang compiler #1037
* Bump Golang compiler #1037
-- Roberto Mier Escandon <rmescandon@gmail.com> Tue, 21 Dec 2021 09:41:44 +0000

View File

@ -171,7 +171,7 @@
4.24.1:
- Added comparison operators! (#94)
- Bumped golang to 1.18 (#1153)
- Bumped Golang to 1.18 (#1153)
- XML parser no longer runs in strict mode (added new flag to run in strict mode) (#1155)
4.23.1:

View File

@ -28,7 +28,7 @@ show_help() {
echo " -h, --help Shows this help"
echo " -d, --distribution DISTRO The distribution to use for the changelog generation. If not provided, last changelog entry"
echo " distribution is considered"
echo " --goversion VERSION The version of golang to use. Default to $GOVERSION"
echo " --goversion VERSION The version of Golang to use. Default to $GOVERSION"
echo " -k, --sign-key KEYID Sign the package sources with the provided gpg key id (long format). When not provided this"
echo " paramater, the generated sources are not signed"
echo " -s, --sign Sign the package sources with a gpg key of the maintainer"
@ -156,7 +156,7 @@ fi
# generate changelog
gbp dch --ignore-branch --no-multimaint -N "$VERSION" -s "\$SINCE" -D "\$DISTRIBUTION"
# using -d to prevent failing when searching for golang dep on control file
# using -d to prevent failing when searching for Golang dep on control file
params=("-d" "-S")
# add the -sa option for signing along with the key to use when provided key id
@ -208,7 +208,7 @@ RUN set -e \
&& sed -i -- 's/# deb-src/deb-src/g' /etc/apt/sources.list \
&& apt-get -qq update
# install golang on its $GOVERSION
# install Golang on its $GOVERSION
FROM base as golang
RUN apt-get -qq -y --no-install-recommends install \
ca-certificates \