Skip to content

Commit d3cc533

Browse files
committed
Fix sleep command typo in script
1 parent 0daabeb commit d3cc533

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

git-commit-push-script.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -256,7 +256,7 @@ if [ -n "$SQUISH_BIN" ]; then
256256
while kill -0 "$LLM_PID" 2>/dev/null; do
257257
_secs=$(( _step / 10 )); _tenths=$(( _step % 10 ))
258258
printf "\r${_sp_cols[$_si]}${_sp_frames[$_si]}${NC} ${WHITE}Generating commit message${NC}${GRAY}...${NC} ${DIM}(${_secs}.${_tenths}s)${NC} "
259-
read -t 0.1 </dev/null 2>/dev/null || true
259+
sleep 0.1
260260
_si=$(( (_si + 1) % 8 ))
261261
_step=$(( _step + 1 ))
262262
done

0 commit comments

Comments
 (0)