Changeset 107 for trunk/UTarget.pas


Ignore:
Timestamp:
May 6, 2019, 1:40:27 PM (5 years ago)
Author:
chronos
Message:
  • Added: Javascript target.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/UTarget.pas

    r106 r107  
    411411    'compiled' + DirectorySeparator + Name + DirectorySeparator +
    412412    ExtractFileNameOnly(ProjectFileName) + SourceExtension;
    413   ForceDirectoriesUTF8(ExtractFilePath(CompiledFile));
     413  ForceDirectories(ExtractFilePath(CompiledFile));
    414414  with TStringList.Create do
    415415  try
     
    459459  if not FileExistsUTF8(ExecutorPath) then
    460460    raise Exception.Create(Format(SExecutorNotFound, [ExecutorPath]));
    461   if FileExistsUTF8(CompiledFile) then
     461  if FileExists(CompiledFile) then
    462462  try
    463463    Process := TProcess.Create(nil);
Note: See TracChangeset for help on using the changeset viewer.