Skip to content
This repository was archived by the owner on Feb 2, 2024. It is now read-only.

Commit 34ebb8c

Browse files
Update .github/workflows/test.yml
Co-authored-by: takesato <takehitosato@gmail.com>
1 parent 20943da commit 34ebb8c

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@ jobs:
120120
after=$(date +%s)
121121
122122
# コマンド呼び出しに時間がかかっているかでリトライ判定をしています
123-
if [ $(expr $after - $before) -gt 1 ]; then
123+
if [ $(($after - $before)) -gt 1 ]; then
124124
echo "::error:: 成功時にもリトライしています after = ${after}, before = ${before}"
125125
exit 1
126126
fi

0 commit comments

Comments
 (0)