aboutsummaryrefslogtreecommitdiff
path: root/src/hugo
diff options
context:
space:
mode:
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 b55c737..27d2d08 100644
--- a/src/hugo/devcontainer-feature.json
+++ b/src/hugo/devcontainer-feature.json
@@ -1,6 +1,6 @@
{
"id": "hugo",
- "version": "1.0.0",
+ "version": "1.0.1",
"name": "Hugo",
"options": {
"version": {
diff --git a/src/hugo/install.sh b/src/hugo/install.sh
index 0ccc294..62c0724 100755
--- a/src/hugo/install.sh
+++ b/src/hugo/install.sh
@@ -111,7 +111,7 @@ if ! hugo version &> /dev/null ; then
chown -R "${USERNAME}:hugo" "${HUGO_DIR}"
chmod -R g+r+w "${HUGO_DIR}"
- find "${HUGO_DIR}" -type d | xargs -n 1 chmod g+s
+ find "${HUGO_DIR}" -type d -print0 | xargs -n 1 -0 chmod g+s
fi
echo "Done!"