Skip to content
This repository has been archived by the owner on Feb 9, 2018. It is now read-only.

Commit

Permalink
Merge pull request #18 from Happy-Neko/fix-project-binaries-dir
Browse files Browse the repository at this point in the history
Fix project.binaries.dir typo
  • Loading branch information
Raptor399 committed Feb 6, 2012
2 parents 43109ec + 35f10b1 commit b58088f
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/main/java/net/pms/configuration/LinuxDefaultPaths.java
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ public String getIMConvertPath() {
* @return The path for binaries.
*/
private String getBinariesPath() {
String path = PropertiesUtil.getProjectProperties().get("project.binaries");
String path = PropertiesUtil.getProjectProperties().get("project.binaries.dir");

if (path != null && !"".equals(path)) {
if (path.endsWith("/")) {
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/net/pms/configuration/MacDefaultPaths.java
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ public String getIMConvertPath() {
* @return The path for binaries.
*/
private String getBinariesPath() {
String path = PropertiesUtil.getProjectProperties().get("project.binaries");
String path = PropertiesUtil.getProjectProperties().get("project.binaries.dir");

if (path != null && !"".equals(path)) {
if (path.endsWith("/")) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ public String getIMConvertPath() {
* @return The path for binaries.
*/
private String getBinariesPath() {
String path = PropertiesUtil.getProjectProperties().get("project.binaries");
String path = PropertiesUtil.getProjectProperties().get("project.binaries.dir");

if (path != null && !"".equals(path)) {
if (path.endsWith("/")) {
Expand Down

0 comments on commit b58088f

Please sign in to comment.