Skip to content

Commit 42f65dc

Browse files
committed
Fixed CI
1 parent 2ae8fdd commit 42f65dc

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

.github/workflows/BuildAndRelease.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@ jobs:
2828
rustup toolchain install stable-gnu
2929
rustup target add x86_64-pc-windows-gnu
3030
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
3132
3233

3334
- name: Upload Artifact

src/config.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,14 +28,14 @@ impl Default for Settings {
2828
#[cfg(target_os = "linux")]
2929
{
3030
Self {
31-
game_path: PathBuf::from("<hl2_linux>"),
31+
game_path: PathBuf::from("hl2_linux"),
3232
}
3333
}
3434

3535
#[cfg(target_os = "macos")]
3636
{
3737
Self {
38-
game_path: PathBuf::from("<hl2.sh>"),
38+
game_path: PathBuf::from("hl2.sh"),
3939
}
4040
}
4141
}

0 commit comments

Comments
 (0)