We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 86a28c2 + a22ce50 commit cc6dcbeCopy full SHA for cc6dcbe
2 files changed
Makefile
@@ -0,0 +1,3 @@
1
+install:
2
+ ./bin/compile
3
+ mv target/release/rq ~/.local/bin
cli/src/tui/tui.rs
@@ -77,10 +77,7 @@ pub fn call() -> anyhow::Result<()> {
77
},
78
};
79
80
- let template = std::fs::read_to_string(format!(
81
- "{}/cli/src/tui/template.tiny",
82
- std::env::current_dir().unwrap().display(),
83
- ))?;
+ let template = include_str!("template.tiny").to_string();
84
85
let mut templates = Templates::new(template, root_view);
86
@@ -98,6 +95,3 @@ pub fn call() -> anyhow::Result<()> {
98
95
99
96
Ok(())
100
97
}
101
-
102
-// https://p.modprog.de/pp3R.rs
103
-// https://p.modprog.de/EMam
0 commit comments