File tree Expand file tree Collapse file tree 3 files changed +6
-5
lines changed
Expand file tree Collapse file tree 3 files changed +6
-5
lines changed Original file line number Diff line number Diff line change @@ -20,7 +20,7 @@ if [ -z "$example" ]; then
2020 exit 1
2121fi
2222
23- PRE=" # EXAMPLE $example |"
23+ PRE=" # DEMO $example |"
2424dir=" ./$example /godot"
2525logfile=" stderr-$example .log"
2626# stdout also outputs some "ERROR:" messages, these are currently ignored.
Original file line number Diff line number Diff line change @@ -175,9 +175,9 @@ jobs:
175175 artifact-name : linux-nightly
176176 godot-binary : godot.linuxbsd.editor.dev.x86_64
177177
178- - name : linux-4.3
178+ - name : linux-4.4
179179 os : ubuntu-22.04
180- artifact-name : linux-4.3
180+ artifact-name : linux-4.4
181181 godot-binary : godot.linuxbsd.editor.dev.x86_64
182182
183183 # Deliberately don't include:
@@ -223,7 +223,8 @@ jobs:
223223
224224 # List all folders in current directory. Don't quote $files variable.
225225 for demo in $files; do
226- ./.github/other/check-example.sh "$demo"
226+ # Strip trailing '/' from folder name.
227+ ./.github/other/check-example.sh "${demo%/}"
227228 done
228229
229230
Original file line number Diff line number Diff line change @@ -67,8 +67,8 @@ shape = SubResource("2")
6767[node name ="Trail" type ="GPUParticles2D" parent ="." ]
6868z_index = -1
6969amount = 10
70- process_material = SubResource ("7" )
7170texture = ExtResource ("2" )
7271speed_scale = 2.0
72+ process_material = SubResource ("7" )
7373
7474[connection signal ="body_entered" from ="." to ="." method ="on_player_body_entered" ]
You can’t perform that action at this time.
0 commit comments