Skip to content

Commit

Permalink
ci: fix butler install
Browse files Browse the repository at this point in the history
  • Loading branch information
florianvazelle committed Jan 14, 2024
1 parent 11acaf7 commit d884939
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions Justfile
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ install-butler: makedirs
# Download Butler if not already done
[private]
@check-butler:
[ ! -e {{ butler_bin }} ] && just butler || true
[ ! -e {{ butler_bin }} ] && just install-butler || true

# === Python ===
#
Expand Down Expand Up @@ -154,9 +154,12 @@ godot *ARGS: check-godot check-templates
@install-addons:
[ -f plug.gd ] && just godot --headless --script plug.gd install force || true

# Workaround from https://github.com/godotengine/godot/pull/68461
# Import game resources
@import-resources:
just godot --editor --headless --quit || true
just godot --headless --export-pack null /dev/null
# timeout 60 just godot --editor || true
# just godot --headless --quit --editor

# Open the Godot editor
@editor:
Expand Down

0 comments on commit d884939

Please sign in to comment.