From 65644a8b142cea4c75d749a019bdefc1285c3996 Mon Sep 17 00:00:00 2001 From: Alejandro Lembke Barrientos Date: Wed, 17 Apr 2024 20:59:45 +0000 Subject: [PATCH] Fix ownership issues in entrypoint.sh and update version to 3.0.19 Updating to version 3.0.19 --- entrypoint.sh | 4 ++-- version.txt | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/entrypoint.sh b/entrypoint.sh index d518a92..5324a12 100755 --- a/entrypoint.sh +++ b/entrypoint.sh @@ -69,14 +69,14 @@ if ! id -u $HOME_USER > /dev/null 2>&1; then fi # Changing the property of the directory /home/${HOME_USER}/.vscode - sudo chown -R ${HOME_USER}: /home/${HOME_USER}/.vscode + sudo chown -R ${HOME_USER} /home/${HOME_USER}/.vscode fi # Then execute entrypoint.sh if [ "$HOME_USER" != "$(whoami)" ]; then exec sudo -u $HOME_USER bash -c "source /etc/environment; /usr/bin/entrypoint.sh" else - sudo chown -R 1000: /home/${HOME_USER} + sudo chown -R 1000 /home/${HOME_USER} fi # Find .sh files in /usr/bin/custom-scripts and execute them in order diff --git a/version.txt b/version.txt index edd1851..4ffb4e1 100755 --- a/version.txt +++ b/version.txt @@ -1 +1 @@ -3.0.18 \ No newline at end of file +3.0.19 \ No newline at end of file