aboutsummaryrefslogtreecommitdiff
path: root/src/hugo
diff options
context:
space:
mode:
authorSamruddhi Khandale <skhandale@microsoft.com>2022-11-24 01:21:26 +0300
committerSamruddhi Khandale <skhandale@microsoft.com>2022-11-24 01:21:26 +0300
commitc8383b60e06c5f46bbd8254781842d4e077034fe (patch)
tree3cea04c37f608dd254597ef81dcef67c410cb821 /src/hugo
parent188f1ef26bc8fa942d552dfaa8596091a8a39126 (diff)
Features: Set USERNAME to _REMOTE_USER if available
Diffstat (limited to 'src/hugo')
-rw-r--r--src/hugo/devcontainer-feature.json2
-rwxr-xr-xsrc/hugo/install.sh2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/hugo/devcontainer-feature.json b/src/hugo/devcontainer-feature.json
index 37a805d..ffc1a3b 100644
--- a/src/hugo/devcontainer-feature.json
+++ b/src/hugo/devcontainer-feature.json
@@ -1,6 +1,6 @@
{
"id": "hugo",
- "version": "1.1.0",
+ "version": "1.1.1",
"name": "Hugo",
"documentationURL": "https://github.com/devcontainers/features/tree/main/src/hugo",
"options": {
diff --git a/src/hugo/install.sh b/src/hugo/install.sh
index c5cb628..7b69684 100755
--- a/src/hugo/install.sh
+++ b/src/hugo/install.sh
@@ -9,7 +9,7 @@
VERSION=${VERSION:-"latest"}
-USERNAME=${USERNAME:-"automatic"}
+USERNAME="${USERNAME:-"${_REMOTE_USER:-"automatic"}"}"
UPDATE_RC=${UPDATE_RC:-"true"}
HUGO_DIR=${HUGO_DIR:-"/usr/local/hugo"}