mirror of
https://github.com/hcengineering/platform.git
synced 2024-11-23 05:53:09 +03:00
6784168b66
Signed-off-by: Andrey Sobolev <haiodo@gmail.com>
9 lines
205 B
Bash
Executable File
9 lines
205 B
Bash
Executable File
#!/bin/bash
|
|
# npm install -g cpupro
|
|
for profile in $(ls ./profiles/*.cpuprofile); do
|
|
name=${profile/\.cpuprofile/}
|
|
if ! test -f $name.html; then
|
|
cpupro $profile -f "$name.html" --no-open
|
|
fi
|
|
done
|