We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2ae8fdd commit 42f65dcCopy full SHA for 42f65dc
.github/workflows/BuildAndRelease.yml
@@ -28,6 +28,7 @@ jobs:
28
rustup toolchain install stable-gnu
29
rustup target add x86_64-pc-windows-gnu
30
cargo build --target x86_64-pc-windows-gnu
31
+ mv target/x86_64-pc-windows-gnu/release/startup-millenium.exe target/x86_64-pc-windows-gnu/release/startup-millenium.exe
32
33
34
- name: Upload Artifact
src/config.rs
@@ -28,14 +28,14 @@ impl Default for Settings {
#[cfg(target_os = "linux")]
{
Self {
- game_path: PathBuf::from("<hl2_linux>"),
+ game_path: PathBuf::from("hl2_linux"),
}
35
#[cfg(target_os = "macos")]
36
37
38
- game_path: PathBuf::from("<hl2.sh>"),
+ game_path: PathBuf::from("hl2.sh"),
39
40
41
0 commit comments