Unverified Commit 8f3115af authored by Mostafa Dahshan's avatar Mostafa Dahshan Committed by GitHub

Desktop lite: Fix quote error (#1082)

* Update install.sh

Corrected a syntax error in line 414 

log "Executing "\$@\"."

was corrected to

log "Executing \"$@\"."

* Update devcontainer-feature.json

---------
Co-authored-by: 's avatarSamruddhi Khandale <samruddhikhandale@github.com>
parent 46f7cea7
{
"id": "desktop-lite",
"version": "1.2.1",
"version": "1.2.2",
"name": "Light-weight Desktop",
"documentationURL": "https://github.com/devcontainers/features/tree/main/src/desktop-lite",
"description": "Adds a lightweight Fluxbox based desktop to the container that can be accessed using a VNC viewer or the web. GUI-based commands executed from the built-in VS code terminal will open on the desktop automatically.",
......
......@@ -411,7 +411,7 @@ else
fi
# Run whatever was passed in
log "Executing "\$@\"."
log "Executing \"$@\"."
exec "$@"
log "** SCRIPT EXIT **"
EOF
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment