Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

FileSystem dock: Fix opening a Linux terminal #88173

Merged
merged 1 commit into from
Feb 15, 2024

Commits on Feb 14, 2024

  1. FileSystem dock: Fix open a terminal

    The previous implementation of opening a terminal
    in the FileSystem dock was causing errors due to the use
    of a bash builtin command that does not work outside the shell.
    
    This resulted in the following error messages:
    
    	ERROR: Could not create child process: command
    		at: execute (drivers/unix/os_unix.cpp:553)
    	ERROR: Could not create child process: command
    		at: execute (drivers/unix/os_unix.cpp:553)
    	...
    
    To resolve this issue,
    + the command is now executed inside a bash shell,
    + if the `terminal_emulator_flags` editor option is empty,
      the working directory for gnome-terminal and urxvt is now properly set.
    capnm committed Feb 14, 2024
    Configuration menu
    Copy the full SHA
    8e8f8e9 View commit details
    Browse the repository at this point in the history