Skip to content

Commit bf576ed

Browse files
committed
[rb] use the right environment variable syntax for windows and linux
1 parent 12c0b37 commit bf576ed

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/ruby-examples.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -90,12 +90,12 @@ jobs:
9090
timeout_minutes: 20
9191
max_attempts: 2
9292
command: cd examples/ruby && bundle exec rspec
93-
new_command_on_retry: DEBUG=true cd examples/ruby && bundle exec rspec --only-failures
93+
new_command_on_retry: $env:DEBUG=true cd examples/ruby && bundle exec rspec --only-failures
9494
- name: Run tests on Linux/Mac
9595
if: matrix.os != 'windows'
9696
uses: nick-invision/retry@v3.0.2
9797
with:
9898
timeout_minutes: 20
9999
max_attempts: 2
100100
command: cd examples/ruby && bundle exec rspec
101-
new_command_on_retry: $env:DEBUG="true" cd examples/ruby && bundle exec rspec --only-failures
101+
new_command_on_retry: DEBUG="true" cd examples/ruby && bundle exec rspec --only-failures

0 commit comments

Comments
 (0)