-
-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
GD-15: The action should accept additional installed plugins (#16)
* GD-15: The action should accept additional installed plugins # Why The action is failing when additional plugins installed. We use the `mv` command to install get selected `gdUnit4` plugin into addons folder, this will fail when the addons folder is not empty # What - use `cp` instead of `mv` command to copy the gdUnit4 plugin to the addons folder. - Correction of the error when publishing reports if no reports are created
- Loading branch information
Nullpointer
authored
Feb 13, 2024
1 parent
b4c4fa7
commit 20216b4
Showing
5 changed files
with
25 additions
and
2 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 |
---|---|---|
|
@@ -17,3 +17,4 @@ runs: | |
path: 'reports/**/results.xml' | ||
reporter: java-junit | ||
fail-on-error: 'false' | ||
fail-on-empty: 'false' |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
[plugin] | ||
|
||
name="custom" | ||
description="just a example" | ||
author="" | ||
version="" | ||
script="plugin.gd" |
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,10 @@ | ||
@tool | ||
extends EditorPlugin | ||
|
||
|
||
func _enter_tree(): | ||
prints("_enter_tree") | ||
|
||
|
||
func _exit_tree(): | ||
prints("_exit_tree") |
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