mirror of
https://github.com/lihop/godot-xterm.git
synced 2025-05-03 12:04:24 +02:00
Add gd-plug and Gut addons
Fresh clones of this repo will need to install Gut using gd-plug: ``` godot --no-window -s plug.gd install ``` Similar to how git submodules also need to be installed.
This commit is contained in:
parent
3759d3a0b9
commit
5a290e927a
6 changed files with 986 additions and 3 deletions
|
@ -4,7 +4,8 @@ set -e
|
|||
|
||||
GDTOOLKIT_VERSION=f5e2746d146200ec07ac6acb6fb378fd4c64f3f0
|
||||
|
||||
FILES=$(git diff --cached --name-only --diff-filter=ACMR | grep '\.gd$' | sed 's| |\\ |g')
|
||||
FILES=$(git diff --cached --name-only --diff-filter=ACMR | grep '\.gd$' | grep -v '^addons/gd-plug' | grep -v '^addons/gut' | sed 's| |\\ |g')
|
||||
echo $FILES
|
||||
[ -z "$FILES" ] && exit 0
|
||||
|
||||
# Setup GDScript Toolkit.
|
||||
|
|
|
@ -1,5 +1,6 @@
|
|||
{
|
||||
"editor.formatOnSave": true,
|
||||
"clang-format.executable": "/run/current-system/sw/bin/clang-format",
|
||||
"nixEnvSelector.nixShellConfig": "NOT_MODIFIED_ENV"
|
||||
"gut-extension.additionalOptions": "-d --no-window",
|
||||
"nixEnvSelector.nixShellConfig": "NOT_MODIFIED_ENV",
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue