mirror of https://gitlab.com/basile.b/dexed.git
fix, dub proj, output filename not properly set when guessed from 'name'
This commit is contained in:
parent
2ad47f35f0
commit
fb8c0495a1
|
|
@ -634,7 +634,7 @@ begin
|
||||||
begin
|
begin
|
||||||
item := fJSON.Find('name');
|
item := fJSON.Find('name');
|
||||||
if assigned(item) then
|
if assigned(item) then
|
||||||
fOutputFileName := item.AsString;
|
fOutputFileName := fBasePath + item.AsString;
|
||||||
end;
|
end;
|
||||||
case fBinKind of
|
case fBinKind of
|
||||||
executable: fOutputFileName += exeExt;
|
executable: fOutputFileName += exeExt;
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue