Skip to content

Commit 6fcedb3

Browse files
committed
#42793 Shell engine now has separate project and site environments.
Following a similar pattern to other engines, the shell engine supports app launching when in site context and app launching and publish when in project context.
1 parent 6550160 commit 6fcedb3

File tree

4 files changed

+33
-5
lines changed

4 files changed

+33
-5
lines changed

env/includes/shell/all.yml renamed to env/includes/shell/project.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ includes:
1717
- ../common/apps.yml
1818
- ../common/settings/tk-multi-publish2.yml
1919

20-
shell.all:
20+
shell.project:
2121
apps:
2222
tk-multi-launchapp:
2323
use_software_entity: true

env/includes/shell/site.yml

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
# Copyright (c) 2016 Shotgun Software Inc.
2+
#
3+
# CONFIDENTIAL AND PROPRIETARY
4+
#
5+
# This work is provided "AS IS" and subject to the Shotgun Pipeline Toolkit
6+
# Source Code License included in this distribution package. See LICENSE.
7+
# By accessing, using, copying or modifying this work you indicate your
8+
# agreement to the Shotgun Pipeline Toolkit Source Code License. All rights
9+
# not expressly granted therein are reserved by Shotgun Software Inc.
10+
#
11+
12+
# this configuration defines the behavior of the Tank command when it
13+
# is running in all environments
14+
15+
includes:
16+
- ../common/frameworks.yml
17+
- ../common/apps.yml
18+
19+
shell.site:
20+
apps:
21+
tk-multi-launchapp:
22+
use_software_entity: true
23+
location: "@common.apps.tk-multi-launchapp.location"
24+
25+
location:
26+
version: v0.5.1
27+
type: app_store
28+
name: tk-shell

env/project.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ includes:
1818
- includes/nuke/project.yml
1919
- includes/flame/project.yml
2020
- includes/desktop/project.yml
21-
- includes/shell/all.yml
21+
- includes/shell/project.yml
2222
- includes/photoshopcc/project.yml
2323
- includes/3dsmax/project.yml
2424
- includes/shotgun/all.yml
@@ -28,7 +28,7 @@ engines:
2828
tk-maya: '@maya.project'
2929
tk-nuke: '@nuke.project'
3030
tk-desktop: '@desktop.project'
31-
tk-shell: '@shell.all'
31+
tk-shell: '@shell.project'
3232
tk-photoshopcc: '@photoshopcc.project'
3333
tk-3dsmaxplus: '@3dsmax.project'
3434
tk-shotgun: '@shotgun.all'

env/site.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ includes:
1818
- includes/maya/site.yml
1919
- includes/nuke/site.yml
2020
- includes/desktop/site.yml
21-
- includes/shell/all.yml
21+
- includes/shell/site.yml
2222
- includes/photoshopcc/site.yml
2323
- includes/3dsmax/site.yml
2424
- includes/shotgun/all.yml
@@ -28,7 +28,7 @@ engines:
2828
tk-maya: '@maya.site'
2929
tk-nuke: '@nuke.site'
3030
tk-desktop: '@desktop.site'
31-
tk-shell: '@shell.all'
31+
tk-shell: '@shell.site'
3232
tk-photoshopcc: '@photoshopcc.site'
3333
tk-3dsmaxplus: '@3dsmax.site'
3434
tk-shotgun: '@shotgun.all'

0 commit comments

Comments
 (0)