Skip to content

Commit 1f48ae9

Browse files
committed
Use : instead of true for while
1 parent 7fbfc76 commit 1f48ae9

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -263,7 +263,7 @@ jobs:
263263
strategy:
264264
matrix:
265265
# os: [macos-13, macos-14]
266-
os: [macos-13]
266+
os: [macos-14]
267267

268268
runs-on: ${{ matrix.os }}
269269
timeout-minutes: 30

scripts/test-retry-capture-cmp.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/bin/sh -eux
22

3-
while true; do
3+
while :; do
44
tmux capture-pane -t "$TARGET" -p >"$CAPTURED_OUTPUT"
55

66
if ${CMP} -s "$CAPTURED_OUTPUT" "$EXPECTED_OUTPUT"; then

0 commit comments

Comments
 (0)