should be using bash

This commit is contained in:
Yehowshua Immanuel 2025-02-02 17:46:23 -05:00
parent 1f06302456
commit 48f69ebfae
2 changed files with 2 additions and 2 deletions

View file

@ -4,7 +4,7 @@ A tool that lets you remotely try new exotic hardware such as Tenstorrent Wormho
# Building # Building
```bash ```bash
nix-shell -p elmPackages.elm cargo uglify-js nix-shell
make serve RELEASE=1 # can also do DEBUG=1 instead make serve RELEASE=1 # can also do DEBUG=1 instead
``` ```

View file

@ -147,7 +147,7 @@ pub fn msg_handler(
let id = get_session_count() as u64; let id = get_session_count() as u64;
let pty_config = tty::Options { 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() ..tty::Options::default()
}; };
let config = term::Config::default(); let config = term::Config::default();