Skip to content

Commit

Permalink
fix: 🎨 Store GCC export paths between quotes
Browse files Browse the repository at this point in the history
  • Loading branch information
SergioGasquez committed Dec 23, 2022
1 parent 30cf198 commit edb43de
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/toolchain/gcc.rs
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ impl Installable for Gcc {
#[cfg(windows)]
exports.push(format!("$Env:PATH += \";{}\"", &self.get_bin_path()));
#[cfg(unix)]
exports.push(format!("export PATH={}:$PATH", &self.get_bin_path()));
exports.push(format!("export PATH=\"{}:$PATH\"", &self.get_bin_path()));

Ok(exports)
}
Expand Down

0 comments on commit edb43de

Please sign in to comment.