From 483b7842532a8029d8bd7fada8b852e9e94521be Mon Sep 17 00:00:00 2001 From: BLaZeKiLL Date: Thu, 22 Oct 2020 18:24:42 +0530 Subject: [PATCH] default docker repository updated to new docker repository --- src/model/image-tag.js | 6 +++--- src/model/image-tag.test.js | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/src/model/image-tag.js b/src/model/image-tag.js index 357ba50a..d31d2780 100644 --- a/src/model/image-tag.js +++ b/src/model/image-tag.js @@ -4,8 +4,8 @@ import Platform from './platform'; class ImageTag { constructor(imageProperties) { const { - repository = 'gableroux', - name = 'unity3d', + repository = 'unityci', + name = 'editor', version = '2019.2.11f1', platform, customImage, @@ -47,7 +47,7 @@ class ImageTag { static get targetPlatformToImageSuffixMap() { const { generic, webgl, mac, windows, android, ios, facebook } = ImageTag.imageSuffixes; - // @see: https://docs.unity3d.com/ScriptReference/BuildTarget.html + // @see: https://docs.editor.com/ScriptReference/BuildTarget.html return { [Platform.types.StandaloneOSX]: mac, [Platform.types.StandaloneWindows]: windows, diff --git a/src/model/image-tag.test.js b/src/model/image-tag.test.js index c36bce40..34493543 100644 --- a/src/model/image-tag.test.js +++ b/src/model/image-tag.test.js @@ -10,9 +10,9 @@ describe('UnityImageVersion', () => { }; const defaults = { - repository: 'gableroux', - name: 'unity3d', - image: 'gableroux/unity3d', + repository: 'unityci', + name: 'editor', + image: 'unityci/editor', }; describe('constructor', () => {