Compare commits

...

2 Commits

Author SHA1 Message Date
David Finol
df7d1e1e25 Update index.js with linux-il2cpp fix (#181)
* Update index.js

* Update index.js with linux-il2cpp fix
2020-11-19 11:05:49 +01:00
David Finol
9707ad7ad5 Convert version major and minor to numbers (#180)
* Convert version major and minor to numbers

* fix linting error

Co-authored-by: Webber Takken <webber@takken.io>
2020-11-18 00:51:10 +01:00
2 changed files with 2 additions and 2 deletions

File diff suppressed because one or more lines are too long

View File

@@ -51,7 +51,7 @@ class ImageTag {
facebook,
} = ImageTag.imageSuffixes;
const [major, minor] = version.split('.');
const [major, minor] = version.split('.').map((digit) => Number(digit));
// @see: https://docs.unity3d.com/ScriptReference/BuildTarget.html
switch (platform) {
case Platform.types.StandaloneOSX: