We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9e8e55c commit 707b510Copy full SHA for 707b510
.travis.yml
@@ -49,6 +49,10 @@ script: |
49
esac
50
export MODE=debug
51
_download/livecode-community-server tests/_testrunner.lc run tests/test-scripts
52
+ if [ $? -ne 0 ] ; then
53
+ cat tests/_test_suite.log
54
+ exit 1
55
+ fi
56
57
addons:
58
# Packages needed for building LiveCode
src/PuzzleTools.livecodescript
@@ -12,7 +12,7 @@ end toNumber
12
13
function fromNumber pNum
14
local tNum
15
- put ((pNum - 1) mod 26) + 65 into tNum
+ put (pNum mod 27) + 64 into tNum
16
return numtochar(tNum)
17
end fromNumber
18
0 commit comments