We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fc43c66 commit f06984cCopy full SHA for f06984c
.github/workflows/BuildAndRelease.yml
@@ -5,7 +5,7 @@ on:
5
branches:
6
- master
7
paths:
8
- - 'src/**'
+ - 'src/*'
9
- 'Cargo.toml'
10
11
jobs:
src/config.rs
@@ -28,14 +28,14 @@ impl Default for Settings {
28
#[cfg(target_os = "linux")]
29
{
30
Self {
31
- game_path: PathBuf::from("hl2_linux"),
+ game_path: PathBuf::from("<hl2_linux>"),
32
}
33
34
35
#[cfg(target_os = "macos")]
36
37
38
- game_path: PathBuf::from("hl2.sh"),
+ game_path: PathBuf::from("<hl2_macos>"),
39
40
41
0 commit comments