should be using bash
This commit is contained in:
parent
1f06302456
commit
48f69ebfae
|
@ -4,7 +4,7 @@ A tool that lets you remotely try new exotic hardware such as Tenstorrent Wormho
|
|||
|
||||
# Building
|
||||
```bash
|
||||
nix-shell -p elmPackages.elm cargo uglify-js
|
||||
nix-shell
|
||||
make serve RELEASE=1 # can also do DEBUG=1 instead
|
||||
```
|
||||
|
||||
|
|
|
@ -147,7 +147,7 @@ pub fn msg_handler(
|
|||
let id = get_session_count() as u64;
|
||||
|
||||
let pty_config = tty::Options {
|
||||
shell: Some(tty::Shell::new("bash".to_string(), vec![])),
|
||||
shell: Some(tty::Shell::new("/usr/bin/env".to_string(), vec!["bash".to_string()])),
|
||||
..tty::Options::default()
|
||||
};
|
||||
let config = term::Config::default();
|
||||
|
|
Loading…
Reference in a new issue