Skip to content

Commit

Permalink
Fix issue with openstudio measure -r
Browse files Browse the repository at this point in the history
Passing a relative path to the measure testing option was not working
properly. This change expands to the canonical path.

close #5021
  • Loading branch information
kbenne committed Nov 10, 2023
1 parent 9f14715 commit 854495d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/cli/MeasureUpdateCommand.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -393,7 +393,7 @@ if result != 0
return 1
end
)ruby",
opt.directoryPath.generic_string());
openstudio::filesystem::canonical(opt.directoryPath).generic_string());
rubyEngine->exec(runTestCmd);
}
}
Expand Down

0 comments on commit 854495d

Please sign in to comment.