mirror of https://github.com/BOINC/boinc.git
10 lines
159 B
Bash
10 lines
159 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
for file in `find -name 'BOINC-Manager.mo'` ; do
|
||
|
dir=`dirname $file`
|
||
|
locale=`basename $dir`
|
||
|
cp -f $file BOINC/locale/${locale}
|
||
|
done
|
||
|
|
||
|
exit 0
|