Skip to content

Commit

Permalink
Fix error when computing history message of launched command line is …
Browse files Browse the repository at this point in the history
…an object is used (#55)

instead of a string
  • Loading branch information
e-marchand authored Aug 29, 2024
1 parent 335b32f commit f1a57c5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Project/Sources/Classes/lep.4dm
Original file line number Diff line number Diff line change
Expand Up @@ -293,7 +293,7 @@ Function launch($command; $arguments : Variant) : cs:C1710.lep
//……………………………………………………………………
End case

$history:="% "+$command+"\n"
$history:="% "+String:C10(This:C1470.command)+"\n"

LAUNCH EXTERNAL PROCESS:C811(This:C1470.command; $inputStream; $outputStream; $errorStream; $pid)

Expand Down Expand Up @@ -1057,4 +1057,4 @@ Function _log()

End if

LOG EVENT:C667(Into 4D debug message:K38:5; $log.join(" "); Error message:K38:3)
LOG EVENT:C667(Into 4D debug message:K38:5; $log.join(" "); Error message:K38:3)

0 comments on commit f1a57c5

Please sign in to comment.