Skip to content

Commit

Permalink
Removes breaking typo from container.sh (#512)
Browse files Browse the repository at this point in the history
# Description

Removes a typo which causes `container.sh` to fail

## Type of change

- Bug fix (non-breaking change which fixes an issue)

## Checklist

- [x] I have run the [`pre-commit` checks](https://pre-commit.com/) with
`./orbit.sh --format`
- [ ] I have made corresponding changes to the documentation
- [x] My changes generate no new warnings
- [ ] I have added tests that prove my fix is effective or that my
feature works
- [ ] I have run all the tests with `./orbit.sh --test` and they pass
- [ ] I have updated the changelog and the corresponding version in the
extension's `config/extension.toml` file
- [x] I have added my name to the `CONTRIBUTORS.md` or my name already
exists there
  • Loading branch information
hhansen-bdai authored Apr 19, 2024
1 parent f71340e commit a642b8e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docker/container.sh
Original file line number Diff line number Diff line change
Expand Up @@ -197,7 +197,7 @@ x11_check() {
if [ "$__ORBIT_X11_FORWARDING_ENABLED" = "null" ]; then
echo "[INFO] X11 forwarding from the Orbit container is off by default."
echo "[INFO] It will fail if there is no display, or this script is being run via ssh without proper configuration."
= read -p "Would you like to enable it? (y/N) " x11_answer
read -p "Would you like to enable it? (y/N) " x11_answer
if [ "$x11_answer" != "${x11_answer#[Yy]}" ]; then
__ORBIT_X11_FORWARDING_ENABLED=1
set_statefile_variable __ORBIT_X11_FORWARDING_ENABLED 1
Expand Down

0 comments on commit a642b8e

Please sign in to comment.