Skip to content

Commit

Permalink
correct project file name for directories that include periods
Browse files Browse the repository at this point in the history
  • Loading branch information
jjallaire committed Sep 21, 2012
1 parent 37c5148 commit 6880abb
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -82,7 +82,7 @@ protected String projFileFromDir(String dir)
{
FileSystemItem dirItem = FileSystemItem.createDir(dir);
return FileSystemItem.createFile(
dirItem.completePath(dirItem.getStem() + ".Rproj")).getPath();
dirItem.completePath(dirItem.getName() + ".Rproj")).getPath();
}

protected FileSystemItem defaultNewProjectLocation_;
Expand Down

0 comments on commit 6880abb

Please sign in to comment.