Skip to content

Commit f881ee7

Browse files
committed
style: Update style
1 parent 5aae476 commit f881ee7

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

src/action.rs

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -141,10 +141,8 @@ impl Action {
141141
// Local CodeQL directory in the working directory
142142
self.working_directory()?.join(".codeql"),
143143
// Runner temp directory
144-
PathBuf::from(
145-
std::env::var("RUNNER_TEMP")
146-
.unwrap_or_else(|_| "/tmp".to_string())
147-
).join(".codeql"),
144+
PathBuf::from(std::env::var("RUNNER_TEMP").unwrap_or_else(|_| "/tmp".to_string()))
145+
.join(".codeql"),
148146
];
149147

150148
for path in paths {

0 commit comments

Comments
 (0)