Skip to content

Commit

Permalink
Desktop lite: Fix quote error (#1082)
Browse files Browse the repository at this point in the history
* Update install.sh

Corrected a syntax error in line 414 

log "Executing "\$@\"."

was corrected to

log "Executing \"$@\"."

* Update devcontainer-feature.json

---------

Co-authored-by: Samruddhi Khandale <[email protected]>
  • Loading branch information
mdahshan and samruddhikhandale authored Aug 12, 2024
1 parent 46f7cea commit 8f3115a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/desktop-lite/devcontainer-feature.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"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.",
Expand Down
2 changes: 1 addition & 1 deletion src/desktop-lite/install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -411,7 +411,7 @@ else
fi
# Run whatever was passed in
log "Executing "\$@\"."
log "Executing \"$@\"."
exec "$@"
log "** SCRIPT EXIT **"
EOF
Expand Down

0 comments on commit 8f3115a

Please sign in to comment.