mirror of
https://github.com/puppeteer/puppeteer
synced 2024-06-14 14:02:48 +00:00
45ab3e0332
This adds a proof-of-concept of `puppeteer-firefox`. This consists of two parts: - `//experimental/juggler` - patches to apply to Firefox. - `//experimental/puppeteer-firefox` - front-end code to be merged with Puppeteer. As things become more stable, we'll gradually move it out of the experimental folder.
8 lines
175 B
Bash
Executable File
8 lines
175 B
Bash
Executable File
set -e
|
|
|
|
total=`git grep ' \* \[' README.md| wc -l`
|
|
complete=`git grep ' \* \[x' README.md | wc -l`
|
|
ratio=`echo "$complete / $total * 100" | bc -l`
|
|
printf "%.2f%%\n" $ratio
|
|
|