Skip to content

Commit d5d0df7

Browse files
authored
Merge pull request #47 from WootingKb/fix/cargo-make-issue
Use specific cargo make version that runs tasks in correct order
2 parents 585b75b + ba3d59f commit d5d0df7

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

.github/workflows/test.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,8 @@ jobs:
2222
with:
2323
override: true
2424
- uses: davidB/rust-cargo-make@v1
25+
with:
26+
version: 0.35.16
2527
- uses: Swatinem/rust-cache@v1
2628
- name: Run tests
2729
run: cargo make test-flow

wooting-analog-sdk/src/sdk.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -591,7 +591,7 @@ mod tests {
591591
let sdk = || _sdk.lock().unwrap();
592592
let dir = format!(
593593
"../target/{}/test_plugin",
594-
std::env::var("TEST_TARGET").unwrap_or("/debug".to_owned())
594+
std::env::var("TEST_TARGET").unwrap_or("debug".to_owned())
595595
);
596596
info!("Loading plugins from: {:?}", dir);
597597
assert!(!sdk().initialised);

0 commit comments

Comments
 (0)