We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 20d7c40 commit 3f68e11Copy full SHA for 3f68e11
src/haxelib/api/GlobalScope.hx
@@ -63,7 +63,7 @@ class GlobalScope extends Scope {
63
repository.setVcsData(library, vcsVersion, data);
64
}
65
66
- if (!(data == null || data.subDir == "" || data.subDir == null)) {
+ if (data != null && data.subDir != "" && data.subDir != null) {
67
final devDir = repository.getValidVersionPath(library, vcsVersion) + data.subDir;
68
repository.setDevPath(library, devDir);
69
} else {
0 commit comments