Skip to content

Commit fe9a7d4

Browse files
authored
Merge pull request #155 from paiml/fix/remove-hardcoded-paths
fix: remove hard-coded paths and patch overrides
2 parents a11686c + 78c0bc1 commit fe9a7d4

File tree

2 files changed

+1
-3
lines changed

2 files changed

+1
-3
lines changed

rash/examples/linting_demo.rs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -202,8 +202,6 @@ const SIMULATION_TESTS: &[(&str, &str, &str)] = &[
202202

203203
fn find_bashrs_binary() -> Option<&'static str> {
204204
let candidates = [
205-
"/mnt/nvme-raid0/targets/bashrs/release/bashrs",
206-
"/mnt/nvme-raid0/targets/bashrs/debug/bashrs",
207205
"target/release/bashrs",
208206
"target/debug/bashrs",
209207
];

rash/src/validation/pipeline.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -781,7 +781,7 @@ mod tests {
781781
let pipeline = create_test_pipeline();
782782
// Complex shell commands should work in exec()
783783
let result = pipeline.validate_string_literal_in_exec(
784-
"ldd /home/noah/.local/bin/main 2>/dev/null | grep -i blas | head -1",
784+
"ldd /usr/local/bin/main 2>/dev/null | grep -i blas | head -1",
785785
);
786786
assert!(
787787
result.is_ok(),

0 commit comments

Comments
 (0)