Integrate all the progress into master #6
|
@ -14,7 +14,7 @@ pub use readmap_helper::get_tool_output;
|
|||
|
||||
pub type EventReceiver = std::sync::mpsc::Receiver<Event<crossterm::event::KeyEvent>>;
|
||||
pub type Terminal = ratatui::Terminal<ratatui::backend::CrosstermBackend<std::io::Stdout>>;
|
||||
type ConsoleFrame<'a> = ratatui::Frame<'a, ratatui::backend::CrosstermBackend<std::io::Stdout>>;
|
||||
type ConsoleFrame<'a> = ratatui::Frame<'a>;
|
||||
|
||||
pub enum Event<I> {
|
||||
Input(I),
|
||||
|
|
|
@ -32,6 +32,11 @@ elif [ $2 = clean ]; then
|
|||
echo "cargo clean $1"
|
||||
$HOME/.cargo/bin/cargo clean
|
||||
|
||||
exit $?
|
||||
elif [ $2 = update ]; then
|
||||
echo "cargo update $1"
|
||||
$HOME/.cargo/bin/cargo update
|
||||
|
||||
exit $?
|
||||
else
|
||||
echo "Unkown cargo command $2 for project $1"
|
||||
|
|
Loading…
Reference in New Issue