mirror of
https://github.com/OpenFactorioServerManager/factorio-server-manager.git
synced 2024-12-29 02:57:24 +02:00
fix if statement to not call env var as program
This commit is contained in:
parent
7a4664e107
commit
839fe2af70
2
.github/workflows/test-workflow.yml
vendored
2
.github/workflows/test-workflow.yml
vendored
@ -28,7 +28,7 @@ jobs:
|
||||
- if: ${{ matrix.go }} == 'ubuntu-latest'
|
||||
run: |
|
||||
cd src
|
||||
if [$factorio_password != ""]; then
|
||||
if [ "$factorio_password" != ""]; then
|
||||
go test ./... -v
|
||||
else
|
||||
go test ./... -v -test.short
|
||||
|
Loading…
Reference in New Issue
Block a user