We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5aae476 commit f881ee7Copy full SHA for f881ee7
src/action.rs
@@ -141,10 +141,8 @@ impl Action {
141
// Local CodeQL directory in the working directory
142
self.working_directory()?.join(".codeql"),
143
// Runner temp directory
144
- PathBuf::from(
145
- std::env::var("RUNNER_TEMP")
146
- .unwrap_or_else(|_| "/tmp".to_string())
147
- ).join(".codeql"),
+ PathBuf::from(std::env::var("RUNNER_TEMP").unwrap_or_else(|_| "/tmp".to_string()))
+ .join(".codeql"),
148
];
149
150
for path in paths {
0 commit comments