Skip to content
Snippets Groups Projects
Commit b8fe7e5e authored by Bob Mottram's avatar Bob Mottram
Browse files

No rounding

parent 2e01c353
No related branches found
No related tags found
No related merge requests found
......@@ -41,7 +41,7 @@ function increment_install_progress {
echo "$install_comment" > /root/.install_comment
fi
install_counter=$(((install_counter + 1) % 100))
install_counter=$((install_counter + 1))
echo -n "$install_counter" > /root/.install_counter
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment