Skip to content

Commit

Permalink
fix: improve stability by quoting GODOT_SYMLINK
Browse files Browse the repository at this point in the history
  • Loading branch information
stranne committed Aug 16, 2024
1 parent da4251f commit 3ef62a1
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/install_test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -55,8 +55,10 @@ jobs:
# Godot.
GODOT_SYMLINK="$(dotnet run -- godot env path)"
echo "🕵️‍♂️ Godot symlink path: $GODOT_SYMLINK"
# Make sure we can use Godot.
$GODOT_SYMLINK --version
"$GODOT_SYMLINK" --version
echo "✅ Godot location is in path!"
Expand Down Expand Up @@ -138,8 +140,10 @@ jobs:
# Godot.
GODOT_SYMLINK="$(dotnet run -- godot env path)"
echo "🕵️‍♂️ Godot symlink path: $GODOT_SYMLINK"
# Make sure we can use Godot.
$GODOT_SYMLINK --version
"$GODOT_SYMLINK" --version
echo "✅ Godot location is in path!"
Expand Down

0 comments on commit 3ef62a1

Please sign in to comment.