Skip to content

Commit 3e7858c

Browse files
[MISC] Corrected bash arithmetic in worker docker run script (#1678)
misc: Corrected bash arithmetic in worker docker run script Co-authored-by: Deepak K <[email protected]>
1 parent df86a79 commit 3e7858c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

workers/run-worker-docker.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,7 @@ discover_pluggable_workers() {
133133
fi
134134

135135
print_status $GREEN "Discovered pluggable worker: $worker_name"
136-
((discovered_count++))
136+
((discovered_count+=1))
137137
fi
138138
done
139139

0 commit comments

Comments
 (0)