forked from AcademySoftwareFoundation/rez
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Convert all plugin rezconfig to rezconfig.py (AcademySoftwareFoundati…
…on#1692) Signed-off-by: brycegbrazen <bryce.gattis@brazenanimation.com> Signed-off-by: Jean-Christophe Morin <jean_christophe_morin@hotmail.com> Co-authored-by: Jean-Christophe Morin <jean_christophe_morin@hotmail.com>
- Loading branch information
1 parent
6c5c395
commit 007d24f
Showing
12 changed files
with
117 additions
and
116 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,7 @@ | ||
include src/rez/data/* | ||
include src/rez/rezconfig | ||
include src/rez/completion/* | ||
include src/rez/vendor/distlib/*.exe | ||
include src/rezgui/rezguiconfig | ||
include src/rezgui/icons/* | ||
recursive-include src/rez README* | ||
recursive-include src/rezplugins *.cmake Doxyfile rezconfig | ||
recursive-include src/rezplugins *.cmake Doxyfile |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
# SPDX-License-Identifier: Apache-2.0 | ||
# Copyright Contributors to the Rez Project |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
# SPDX-License-Identifier: Apache-2.0 | ||
# Copyright Contributors to the Rez Project | ||
|
||
|
||
git = { | ||
# If false, cancel a package release if there is no upstream branch. | ||
"allow_no_upstream": False | ||
} |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
# SPDX-License-Identifier: Apache-2.0 | ||
# Copyright Contributors to the Rez Project | ||
|
||
|
||
sh = { | ||
"prompt": '>', | ||
"executable_fullpath": None | ||
} | ||
bash = { | ||
"prompt": '>', | ||
"executable_fullpath": None | ||
} | ||
csh = { | ||
"prompt": '>', | ||
"executable_fullpath": None | ||
} | ||
tcsh = { | ||
"prompt": '>', | ||
"executable_fullpath": None | ||
} | ||
zsh = { | ||
"prompt": '%', | ||
"executable_fullpath": None | ||
} | ||
cmd = { | ||
"prompt": '$G', | ||
"additional_pathext": [".PY"], | ||
"executable_fullpath": None | ||
} | ||
powershell = { | ||
"prompt": '> $ ', | ||
"additional_pathext": [".PY"], | ||
"executable_fullpath": None, | ||
"execution_policy": None | ||
} | ||
pwsh = { | ||
"prompt": '> $ ', | ||
"additional_pathext": [".PY"], | ||
"executable_fullpath": None, | ||
"execution_policy": None | ||
} | ||
gitbash = { | ||
"prompt": '>', | ||
"executable_fullpath": None | ||
} |