mirror of
https://github.com/wpilibsuite/allwpilib
synced 2026-06-29 02:21:44 +00:00
Fixed eclipse bug on windows when not run from command prompt.
Change-Id: I5e908e163f13e79d4714bcf6243ebe17e3f767e7
This commit is contained in:
@@ -227,7 +227,7 @@ public class NewProjectMainPage extends WizardPage {
|
||||
}
|
||||
|
||||
public String getWorld() {
|
||||
return worldText.getText().replace(System.getenv("HOME"), "${user.home}");
|
||||
return worldText.getText().replace(System.getProperty("user.home"), "${user.home}");
|
||||
}
|
||||
|
||||
public void setShowPackage(boolean bool) {
|
||||
|
||||
Reference in New Issue
Block a user