Skip to content

Commit

Permalink
Set credentials file according to documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
KostyaSha committed Mar 3, 2015
1 parent dcc3b7f commit 0bf81f4
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ public abstract class AbstractGitHubApiTestBase extends Assert {
@Before
public void setUp() throws Exception {
Properties props = new Properties();
java.io.File f = new java.io.File(System.getProperty("user.home"), ".github.kohsuke2");
java.io.File f = new java.io.File(System.getProperty("user.home"), ".github");
if (f.exists()) {
FileInputStream in = new FileInputStream(f);
try {
Expand Down

0 comments on commit 0bf81f4

Please sign in to comment.