Skip to content

Commit

Permalink
details check fix
Browse files Browse the repository at this point in the history
  • Loading branch information
dgibbs64 committed Oct 27, 2023
1 parent 37c6996 commit f696ff5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/details-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -59,14 +59,14 @@ jobs:
- name: Download config
run: |
if [ -z "${{ steps.sets-servercfgname.outputs.servercfgname }}" ]; then
if [ "${{ steps.sets-servercfgname.outputs.servercfgname }}" == "servercfgname=" ]; then
echo "This game server has no config file."
else
curl -f -o config "https://raw.githubusercontent.com/GameServerManagers/Game-Server-Configs/main/${{ matrix.shortname }}/${{ steps.sets-servercfgname.outputs.servercfgname }}"
fi
- name: Display config
run: |
if [ -z "${{ steps.sets-servercfgname.outputs.servercfgname }}" ]; then
if [ "${{ steps.sets-servercfgname.outputs.servercfgname }}" == "servercfgname=" ]; then
echo "This game server has no config file."
else
cat config
Expand Down

0 comments on commit f696ff5

Please sign in to comment.