Skip to content

Commit

Permalink
fix error message and update to 1.0.2
Browse files Browse the repository at this point in the history
  • Loading branch information
Carmine DiMascio committed Dec 3, 2017
1 parent 4c8cd86 commit 681bf81
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,14 +14,14 @@ Dotenv is a zero-dependency module that loads environment variables from a `.env
<dependency>
<groupId>io.github.cdimascio</groupId>
<artifactId>java-dotenv</artifactId>
<version>1.0.1</version>
<version>1.0.2</version>
</dependency>
```

### Gradle

```
compile 'io.github.cdimascio:java-dotenv:1.0.1'
compile 'io.github.cdimascio:java-dotenv:1.0.2'
```


Expand Down
2 changes: 1 addition & 1 deletion java-dotenv-1.0.1.pom → java-dotenv-1.0.2.pom
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

<groupId>io.github.cdimascio</groupId>
<artifactId>java-dotenv</artifactId>
<version>1.0.1</version>
<version>1.0.2</version>


<licenses>
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

<groupId>io.github.cdimascio</groupId>
<artifactId>java-dotenv</artifactId>
<version>1.0.1</version>
<version>1.0.2</version>


<licenses>
Expand Down
2 changes: 1 addition & 1 deletion src/main/kotlin/io/github/cdimascio/Dotenv.kt
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ private object PathResolver {
}
if (path === null) {
println("$path")
throw DotEnvException("${path} not found")
throw DotEnvException("${fullPath} not found")
}
return path
}
Expand Down

0 comments on commit 681bf81

Please sign in to comment.