Skip to content

Commit b4d3ad3

Browse files
authored
fix relative paths for project name closes #327 (#330)
1 parent f823e60 commit b4d3ad3

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

commandLine/src/main.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -508,8 +508,8 @@ int main(int argc, char* argv[]){
508508
if (ofFilePath::isAbsolute(projectName)) {
509509
projectPath = projectName;
510510
} else {
511-
projectPath = of::filesystem::absolute(projectPath).string();
512-
}
511+
projectPath = of::filesystem::absolute(projectName).string();
512+
}
513513
} else {
514514
ofLogError() << "Missing project path";
515515
printHelp();

0 commit comments

Comments
 (0)