Skip to content

Commit f06984c

Browse files
committed
Trigger Workflow
1 parent fc43c66 commit f06984c

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/BuildAndRelease.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ on:
55
branches:
66
- master
77
paths:
8-
- 'src/**'
8+
- 'src/*'
99
- 'Cargo.toml'
1010

1111
jobs:

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_macos>"),
3939
}
4040
}
4141
}

0 commit comments

Comments
 (0)