Skip to content

Commit c8ca1d2

Browse files
committed
fix
Signed-off-by: Sarnie, Nick <[email protected]>
1 parent bc4253b commit c8ca1d2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

devops/actions/reset_gpu/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ runs:
2323
# Then reset all i915 devices. We don't do a PCI FLR because
2424
# it seems to fail on some older GPUs.
2525
sudo mount -t debugfs none /sys/kernel/debug || true
26-
dirs=$(sudo ls -d /sys/kernel/debug/dri/*/)
26+
dirs=$(sudo bash -c 'ls -d /sys/kernel/debug/dri/*')
2727
for dir in $dirs; do
2828
if sudo test -e "${dir}/i915_wedged"; then
2929
sudo bash -c 'echo 1 > ${dir}/i915_wedged' $dir

0 commit comments

Comments
 (0)