We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 753fb9a commit 16a67b9Copy full SHA for 16a67b9
src/josh.rs
@@ -7,6 +7,8 @@ use std::process::{Command, Stdio};
7
use std::time::Duration;
8
9
const JOSH_PORT: u16 = 42042;
10
+/// Version of `josh-proxy` that should be downloaded for the user.
11
+const JOSH_VERSION: &str = "r24.10.04";
12
13
pub struct JoshProxy {
14
path: PathBuf,
@@ -68,7 +70,7 @@ pub fn try_install_josh() -> Option<JoshProxy> {
68
70
"--git",
69
71
"https://github.com/josh-project/josh",
72
"--tag",
- "r24.10.04",
73
+ JOSH_VERSION,
74
"josh-proxy",
75
])
76
.expect("cannot install josh-proxy");
0 commit comments