Skip to content

Commit

Permalink
fix(rpm_spec): same quoting issue with mock
Browse files Browse the repository at this point in the history
  • Loading branch information
madonuko committed Dec 4, 2024
1 parent cdff1d0 commit 67c7d4d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/rpm_spec.rs
Original file line number Diff line number Diff line change
Expand Up @@ -367,7 +367,7 @@ impl MockBackend {
});

self.macros.iter().for_each(|(name, value)| {
cmd.arg("-D").arg(format!("'{name} {value}'"));
cmd.arg("-D").arg(format!("{name} {value}"));
});

if self.no_mirror {
Expand Down

0 comments on commit 67c7d4d

Please sign in to comment.