23 строки
490 B
Bash
Executable File
23 строки
490 B
Bash
Executable File
#!/bin/sh
|
|
|
|
# Invoke all scripts that build reports.
|
|
|
|
# Switch to the directory this script is placed in.
|
|
cd `dirname $_`
|
|
|
|
./get-buildcrashes.php
|
|
./get-explosives.php
|
|
./get-flashhangs.php $@
|
|
./get-flashversions.php $@
|
|
#./get-components.php
|
|
./get-startupcrashes.php
|
|
./get-devicecrashes.php
|
|
./get-topcrashes.php
|
|
./get-b2gcrashes.php
|
|
./get-socorrodata.php
|
|
./get-socorrobugsweekly.php
|
|
./get-crashbugsweekly.php
|
|
|
|
# indicate the latest processed date
|
|
date -d "yesterday" +"%F" > ../latestdate.txt
|