Skip to content

Commit

Permalink
Removed space in github env variable...
Browse files Browse the repository at this point in the history
  • Loading branch information
Hexorg committed Oct 22, 2023
1 parent 543f52b commit 912992e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/search.rs
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ mod test {

fn full_search(domain_filename:&'static str, problem_filename:&'static str) -> std::io::Result<Vec<usize>> {
use std::{fs, env, path::Path};
let workspace_path = match env::var("GITHUB_WORKSPACE ") {
let workspace_path = match env::var("GITHUB_WORKSPACE") {
Ok(path) => path,
Err(_) => match env::var("CARGO_MANIFEST_DIR") {
Ok(path) => path,
Expand Down

0 comments on commit 912992e

Please sign in to comment.