Skip to content

Commit 271505b

Browse files
committed
Merge remote-tracking branch 'upstream/release-6.7.8' into merge-6.7.8-GM_14.12.2015
2 parents ab12011 + db7eec9 commit 271505b

5 files changed

Lines changed: 12 additions & 53 deletions

File tree

builder/archive_builder.livecodescript

Lines changed: 0 additions & 47 deletions
This file was deleted.

builder/builder_utilities.livecodescript

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ on builderBuild pWhich, pPlatforms, pEdition, pType
8787
case "Archive"
8888
local tBuildNumber
8989
put builderGetBuildNumber() into tBuildNumber
90-
dispatch "archiveBuilderRun" to stack builderArchiveBuilderStack() with pEdition, tVersion, tBuildNumber, pType
90+
dispatch "archiveBuilderRun" to stack builderArchiveBuilderStack() with tVersion, tBuildNumber, pType
9191
break
9292
end switch
9393

@@ -208,6 +208,11 @@ function builderSystemFolder
208208
return item 1 to -2 of the filename of me
209209
end builderSystemFolder
210210

211+
-- Return the folder of the private builder system
212+
function builderSystemPrivateFolder
213+
return builderPrivateRepoFolder() & slash & "builder"
214+
end builderSystemPrivateFolder
215+
211216
-- Returns the folder where intermediate products should be placed
212217
function builderWorkFolder
213218
if sWorkDir is not empty then
@@ -318,7 +323,7 @@ function builderNotesBuilderStack
318323
end builderNotesBuilderStack
319324

320325
function builderArchiveBuilderStack
321-
return builderSystemFolder() & slash & "archive_builder.livecodescript"
326+
return builderSystemPrivateFolder() & slash & "archive_builder.livecodescript"
322327
end builderArchiveBuilderStack
323328

324329
function builderModuleInterfaceFolder

docs/notes/bugfix-16495.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
# LiveCode 6.7.8 (RC4) will not test launch app in iOS Simulator 9.1

ide-support/revsaveasiosstandalone.livecodescript

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1712,7 +1712,7 @@ private command symlinkRedirect pSource, pTarget
17121712
put escapeSingleQuote(pSource) into tEscapedSource
17131713
put escapeSingleQuote(pTarget) into tEscapedTarget
17141714

1715-
put get shell(merge("ln '[[tEscapedSource]]' '[[tEscapedTarget]]' || cp '[[tEscapedSource]]' '[[tEscapedTarget]]'"))
1715+
get shell(merge("ln '[[tEscapedSource]]' '[[tEscapedTarget]]' || cp '[[tEscapedSource]]' '[[tEscapedTarget]]'"))
17161716

17171717
if the result is not empty then
17181718
// Both 'ln' and 'cp' failedn

version

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
BUILD_REVISION = 10047
1+
BUILD_REVISION = 10048
22
BUILD_MAJOR_VERSION = 7
33
BUILD_MINOR_VERSION = 1
44
BUILD_POINT_VERSION = 1
5-
BUILD_SHORT_VERSION = 7.1.1-rc-4
6-
BUILD_LONG_VERSION = 7.1.1.10047 (rc 4)
5+
BUILD_SHORT_VERSION = 7.1.1
6+
BUILD_LONG_VERSION = 7.1.1.10048

0 commit comments

Comments
 (0)