Adding to bash the functionality to install extensions from array. Updating to version 1.0.15

This commit is contained in:
Alejandro Lembke Barrientos 2023-08-29 12:56:31 +00:00
parent e0bb4bfa2f
commit d5e345fb48
2 changed files with 18 additions and 1 deletions

View File

@ -7,6 +7,23 @@ addgroup nonroot
adduser --disabled-password --gecos "" ${HOME_USER} adduser --disabled-password --gecos "" ${HOME_USER}
echo "${HOME_USER} ALL=(ALL) NOPASSWD: ALL" >> /etc/sudoers echo "${HOME_USER} ALL=(ALL) NOPASSWD: ALL" >> /etc/sudoers
# Check if the data.json file exists
if [ -f "/home/extensions.json" ]; then
# Read the JSON file into a variable
jsonExtensions=$(cat /home/extensions.json)
# Use jq to extract the array elements
extensions=$(echo $jsonExtensions | jq -r '.[]')
# Loop through the extensions and process each element
for extension in $extensions; do
echo "Installing extension: $extension"
sudo su - ${HOME_USER} -c "code --install-extension $extension"
done
else
echo "File extensions.json not found"
fi
if [[ -z "${VSCODE_TUNNEL_NAME}" ]]; then if [[ -z "${VSCODE_TUNNEL_NAME}" ]]; then
sudo su - ${HOME_USER} -c "code tunnel --accept-server-license-terms" sudo su - ${HOME_USER} -c "code tunnel --accept-server-license-terms"
else else

View File

@ -1 +1 @@
1.0.14 1.0.15