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 08e538d commit 9453610Copy full SHA for 9453610
worker-build/src/binary.rs
@@ -114,7 +114,7 @@ fn remove_all_versions(name: &str, target: &str) -> Result<usize> {
114
115
/// Cache path for this binary instance
116
fn cache_path(name: &str, version: &str, target: &str) -> Result<PathBuf> {
117
- let path_name = format!("{name}-{target}-{version}{MAYBE_EXE}");
+ let path_name = format!("{name}-{target}-{version}");
118
let path = dirs_next::cache_dir()
119
.unwrap_or_else(std::env::temp_dir)
120
.join("worker-build")
0 commit comments