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

Commit d80efa1

Browse files
Merge pull request #1933 from livecode/bugfix-8704
[Bug 8704] Search in the correct location for the autoupdater on Linux
2 parents 28086f0 + d9c63d5 commit d80efa1

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

Toolset/libraries/revidelibrary.8.livecodescript

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9774,9 +9774,9 @@ command revIDECheckForUpdates
97749774
case "Linux"
97759775
-- MDW-2015-12-19 [[fix_installer]] LC8-style setup filename
97769776
if the processor is "x86_64" then
9777-
put item 1 to -3 of the filename me & "/setup.x86_64" into tCommand
9777+
put item 1 to -4 of the filename of me & "/setup.x86_64" into tCommand
97789778
else
9779-
put item 1 to -3 of the filename me & "/setup.x86" into tCommand
9779+
put item 1 to -4 of the filename of me & "/setup.x86" into tCommand
97809780
end if
97819781
put tCommand && "install -foregroundupdate" into tCommand
97829782
break

notes/bugfix-8704.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
# Ensure the autoupdater on Linux can be launched

0 commit comments

Comments
 (0)