Skip to content
Snippets Groups Projects
Commit 1b479b29 authored by Kevin Moore's avatar Kevin Moore Committed by Kevin Moore
Browse files

eliminate test failure on mac

Where /var/ is really /private/var/
parent 64a4813f
No related branches found
No related tags found
No related merge requests found
......@@ -251,7 +251,7 @@ String createTempDir(String base, String prefix) {
String createSystemTempDir() {
var tempDir = Directory.systemTemp.createTempSync('pub_');
log.io("Created temp directory ${tempDir.path}");
return tempDir.path;
return tempDir.resolveSymbolicLinksSync();
}
/// Lists the contents of [dir].
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment