Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
joshspicer committed Jul 22, 2022
1 parent 02be510 commit 0342513
Show file tree
Hide file tree
Showing 10 changed files with 11 additions and 10 deletions.
2 changes: 1 addition & 1 deletion src/go/devcontainer-feature.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"id": "go",
"version": "1.0.7",
"version": "1.0.8",
"name": "Go",
"description": "Installs Go and common Go utilities. Auto-detects latest version and installs needed dependencies.",
"options": {
Expand Down
2 changes: 1 addition & 1 deletion src/go/install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
# Docs: https://github.com/microsoft/vscode-dev-containers/blob/main/script-library/docs/go.md
# Maintainer: The VS Code and Codespaces Teams

# I have made a change!
# I have made another change!

TARGET_GO_VERSION=${VERSION:-"latest"}

Expand Down
2 changes: 1 addition & 1 deletion src/powershell/devcontainer-feature.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"id": "powershell",
"version": "1.0.8",
"version": "1.0.9",
"name": "PowerShell",
"description": "Installs PowerShell along with needed dependencies. Useful for base Dockerfiles that often are missing required install dependencies like gpg.",
"options": {
Expand Down
2 changes: 1 addition & 1 deletion src/powershell/install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
# Docs: https://github.com/microsoft/vscode-dev-containers/blob/main/script-library/docs/powershell.md
# Maintainer: The VS Code and Codespaces Teams

# I have made a change!
# I have made another change!
set -e

POWERSHELL_VERSION=${VERSION:-"latest"}
Expand Down
2 changes: 1 addition & 1 deletion src/python/devcontainer-feature.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"id": "python",
"version": "1.0.7",
"version": "1.0.8",
"name": "Python",
"description": "Installs the provided version of Python, as well as PIPX, and other common Python utilities. JupyterLab is conditionally installed with the python feature. Note: May require source code compilation.",
"options": {
Expand Down
2 changes: 1 addition & 1 deletion src/python/install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
# Docs: https://github.com/microsoft/vscode-dev-containers/blob/main/script-library/docs/python.md
# Maintainer: The VS Code and Codespaces Teams

# I have made a change!
# I have made another change!

PYTHON_VERSION=${VERSION:-"latest"} # 'system' checks the base image first, else installs 'latest'
INSTALL_PYTHON_TOOLS=${INSTALL_PYTHON_TOOLS:-"true"}
Expand Down
2 changes: 1 addition & 1 deletion src/ruby/devcontainer-feature.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"id": "ruby",
"version": "1.0.11",
"version": "1.0.12",
"name": "Ruby (via rvm)",
"description": "Installs Ruby, rvm, rbenv, common Ruby utilities, and needed dependencies.",
"options": {
Expand Down
3 changes: 2 additions & 1 deletion src/ruby/install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,8 @@
# Docs: https://github.com/microsoft/vscode-dev-containers/blob/main/script-library/docs/ruby.md
# Maintainer: The VS Code and Codespaces Teams

# I have made a change!
# I have made another change!

RUBY_VERSION=${VERSION:-"latest"}

USERNAME=${USERNAME:-"automatic"}
Expand Down
2 changes: 1 addition & 1 deletion src/rust/devcontainer-feature.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"id": "rust",
"version": "1.0.7",
"version": "1.0.8",
"name": "Rust",
"description": "Installs Rust, common Rust utilities, and their required dependencies",
"options": {
Expand Down
2 changes: 1 addition & 1 deletion src/rust/install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
# Docs: https://github.com/microsoft/vscode-dev-containers/blob/main/script-library/docs/rust.md
# Maintainer: The VS Code and Codespaces Teams

# I have made a change!
# I have made another change!

RUST_VERSION=${VERSION:-"latest"}
RUSTUP_PROFILE=${PROFILE:-"minimal"}
Expand Down

0 comments on commit 0342513

Please sign in to comment.