mirror of https://github.com/BOINC/boinc.git
15 lines
285 B
Bash
15 lines
285 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
# $Id:$
|
||
|
# Regenerate the error table hash. To be run upon BOINC update
|
||
|
|
||
|
table=monitoring_errors_table.pm
|
||
|
input=$HOME/BOINC/boinc/lib/error_numbers.h
|
||
|
|
||
|
echo "our %error_table=();" > $table
|
||
|
grep ERR_ $input |
|
||
|
awk '{print "$error_table{" $3 "}=\"" $2 "\";"}' >> $table
|
||
|
|
||
|
|
||
|
|