Skip to content
This repository was archived by the owner on Nov 30, 2023. It is now read-only.

Commit e0c02b4

Browse files
author
CI
committed
Automated update of common script sources and hash
1 parent 7c24060 commit e0c02b4

File tree

2 files changed

+3
-3
lines changed
  • containers

2 files changed

+3
-3
lines changed

containers/codespaces-linux/.devcontainer/library-scripts/go-debian.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -169,7 +169,7 @@ if [ "${INSTALL_GO_TOOLS}" = "true" ]; then
169169

170170
# Use go get for versions of go under 1.16
171171
go_install_command=install
172-
if [[ "1.16" > "$(go version | grep -oP 'go\K[0-9]+\.[0-9]+\.[0-9]+')" ]]; then
172+
if [[ "1.16" > "$(go version | grep -oP 'go\K[0-9]+\.[0-9]+(\.[0-9]+)?')" ]]; then
173173
export GO111MODULE=on
174174
go_install_command=get
175175
echo "Go version < 1.16, using go get."

containers/elixir-phoenix-postgres/.devcontainer/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@ ARG USER_GID=$USER_UID
1111
# Options for common package install script
1212
ARG INSTALL_ZSH="true"
1313
ARG UPGRADE_PACKAGES="true"
14-
ARG COMMON_SCRIPT_SOURCE="https://raw.githubusercontent.com/microsoft/vscode-dev-containers/main/script-library/common-debian.sh"
15-
ARG COMMON_SCRIPT_SHA="dev-mode"
14+
ARG COMMON_SCRIPT_SOURCE="https://raw.githubusercontent.com/microsoft/vscode-dev-containers/v0.194.0/script-library/common-debian.sh"
15+
ARG COMMON_SCRIPT_SHA="53c6267bf57b4ea6bb6128ba2e415f15831f2db42b140080e2d789327dff572e"
1616

1717
# Optional Settings for Phoenix
1818
ARG PHOENIX_VERSION="1.5.4"

0 commit comments

Comments
 (0)