mirror of
https://github.com/monero-project/monero.git
synced 2026-06-12 11:01:34 -07:00
17 lines
297 B
Bash
Executable File
17 lines
297 B
Bash
Executable File
#!/bin/sh
|
|
|
|
lupdate=`which lupdate 2> /dev/null`
|
|
if test -z "$lupdate"
|
|
then
|
|
lupdate=`which lupdate-qt4 2> /dev/null`
|
|
fi
|
|
if test -z "$lupdate"
|
|
then
|
|
echo "lupdate not found"
|
|
exit 1
|
|
fi
|
|
|
|
echo "using $lupdate"
|
|
"$lupdate" `find src -name \*.cpp` -ts translations/*.ts -no-obsolete -locations none
|
|
|