Skip to content

Commit

Permalink
GD-511: Remove obsolete ProjectScanner tool (#513)
Browse files Browse the repository at this point in the history
# Why
Since introducing `gdunit4-action` the tool `ProjectScanner` is
obsolete. The restore of project cache is done by:
```
    - name: 'Restore Godot project cache'
      if: ${{ !cancelled() }}
      env:
        GODOT_BIN: '/home/runner/godot-linux/godot'
      shell: bash
      run: |
        cd "${{ inputs.project_dir }}"
        echo -e "\e[94mStart of the recovery of the project cache ...\e[0m"
        $GODOT_BIN --path ./ -e --headless --quit-after 2000
        echo -e "\e[94mProject cache successfully restored.\e[0m"
```
or since Godot v4.2.2 by using `--import` flag to restore the cache

# What
Deleted the `ProjectScanner` tool
  • Loading branch information
MikeSchulze authored Jun 22, 2024
1 parent 72560ef commit f5e6dfb
Showing 1 changed file with 0 additions and 99 deletions.
99 changes: 0 additions & 99 deletions addons/gdUnit4/bin/ProjectScanner.gd

This file was deleted.

0 comments on commit f5e6dfb

Please sign in to comment.