Skip to content

Commit a53fd2d

Browse files
authored
Merge branch 'master' into fix/bump-bouncy-castle
2 parents 0ecae54 + 558a820 commit a53fd2d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

common/src/main/java/com/genexus/util/GXFileInfo.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ public GXFileInfo(File file, boolean isDirectory){
2828
this.isDirectory = isDirectory;
2929
}
3030
public String getPath(){
31-
if (fileSource.isFile()){
31+
if (fileSource.isFile() || !exists()){
3232
String absoluteName = getAbsolutePath();
3333
if (!absoluteName.equals(""))
3434
return new File(absoluteName).getParent();

0 commit comments

Comments
 (0)