Skip to content
This repository was archived by the owner on Aug 31, 2021. It is now read-only.

Commit e8b0cda

Browse files
Merge pull request #2018 from montegoulding/toolchain
[[ BFS ]] Fix toolchain path when running from repo
2 parents 84e21e3 + 97fa897 commit e8b0cda

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

Toolset/libraries/revidelibrary.8.livecodescript

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4014,7 +4014,11 @@ function revIDESpecialFolderPath pKey, pParam
40144014
return item 1 to -3 of the filename of stack "home" & "/Toolset"
40154015
break
40164016
case "Toolchain"
4017-
return item 1 to -3 of the filename of stack "home" & "/Toolchain"
4017+
if revEnvironmentIsInstalled() then
4018+
return item 1 to -3 of the filename of stack "home" & "/Toolchain"
4019+
else
4020+
return revEnvironmentBinariesPath()
4021+
end if
40184022
break
40194023
case "Object Property Definitions"
40204024
return item 1 to -3 of the filename of stack "home" & "/Toolset/resources/supporting_files/property_definitions"

0 commit comments

Comments
 (0)