mirror of https://gitlab.com/basile.b/dexed.git
fix #242 - Possible error when DUB autoFetch option activated and dep version is ~master
This commit is contained in:
parent
04898b564b
commit
b63b3044a1
|
@ -1339,7 +1339,7 @@ procedure TCEDubProject.updateImportPathsFromJson;
|
|||
o := '>=';
|
||||
p := '0.0.0';
|
||||
end
|
||||
else if p = 'master' then
|
||||
else if (p = 'master') or (v = '~master') then
|
||||
q.init('v0.0.0-master')
|
||||
else
|
||||
q.init('v' + p);
|
||||
|
|
Loading…
Reference in New Issue