We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d26baee commit 640406eCopy full SHA for 640406e
2 files changed
data7/pom.xml
@@ -18,12 +18,12 @@
18
<dependency>
19
<groupId>lu.jimenez.research</groupId>
20
<artifactId>data7-miscUtils</artifactId>
21
- <version>1.0</version>
+ <version>1.1</version>
22
</dependency>
23
24
25
<artifactId>data7-gitUtils</artifactId>
26
27
28
</dependencies>
29
data7/src/main/java/data7/ResourcesPath.java
@@ -12,7 +12,7 @@ public class ResourcesPath {
12
13
public ResourcesPath(String path) {
14
File f = new File(path);
15
- if (!(f.exists() && f.isDirectory())) {
+ if (f.exists() && f.isDirectory()) {
16
savingPath = path;
17
binaryPath = savingPath + "binary/";
gitPath = savingPath + "git/";
0 commit comments