Skip to content

Commit

Permalink
Progress for Bazel builds 1000+ actions (#16)
Browse files Browse the repository at this point in the history
This adds the ability to convert from 1,000 actions to 1000
  • Loading branch information
jerrymarino authored Dec 6, 2019
1 parent a270061 commit a97f644
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Examples/BazelBuildService/ProgressView.swift
Original file line number Diff line number Diff line change
Expand Up @@ -97,8 +97,8 @@ struct ProgressView {
}
}
if numberStrings.count == 2 {
ranActions = Int32(numberStrings[0]) ?? 0
totalActions = Int32(numberStrings[1]) ?? 0
ranActions = Int32(numberStrings[0].replacingOccurrences(of: ",", with: "")) ?? 0
totalActions = Int32(numberStrings[1].replacingOccurrences(of: ",", with: "")) ?? 0
}
}

Expand Down

0 comments on commit a97f644

Please sign in to comment.