mirror of
https://github.com/aleleba/aleleba-vscode-dockerfile-configuration.git
synced 2025-01-09 05:06:46 -06:00
Update entrypoint.sh and version.txt Updating to version 3.0.27
This commit is contained in:
parent
c9799b9a77
commit
d9df63f836
@ -76,7 +76,11 @@ fi
|
|||||||
# Find .sh files in /usr/bin/custom-scripts and execute them in order
|
# Find .sh files in /usr/bin/custom-scripts and execute them in order
|
||||||
for script in $(find /usr/bin/custom-scripts -name "*.sh" | sort); do
|
for script in $(find /usr/bin/custom-scripts -name "*.sh" | sort); do
|
||||||
chmod +x $script
|
chmod +x $script
|
||||||
sudo -u $HOME_USER bash -c "source /etc/environment; sudo $script"
|
if [[ $script == *"sudo"* ]]; then
|
||||||
|
sudo -u $HOME_USER bash -c "source /etc/environment; sudo $script"
|
||||||
|
else
|
||||||
|
sudo -u $HOME_USER bash -c "source /etc/environment; $script"
|
||||||
|
fi
|
||||||
done
|
done
|
||||||
|
|
||||||
# Move the .bashrc file to the user's home directory
|
# Move the .bashrc file to the user's home directory
|
||||||
|
@ -1 +1 @@
|
|||||||
3.0.26
|
3.0.27
|
Loading…
Reference in New Issue
Block a user