mirror of
https://github.com/mupen64plus/mupen64plus-oldsvn.git
synced 2025-04-02 10:52:35 -04:00
13 lines
193 B
Bash
Executable file
13 lines
193 B
Bash
Executable file
#!/bin/sh
|
|
|
|
DIR=../main
|
|
EXCLUDE=gui_gtk
|
|
TARGETS=
|
|
|
|
for t in $(ls ${DIR} -lI ${EXCLUDE} | awk '{ print $8 }')
|
|
do
|
|
TARGETS="${DIR}/${t} ${TARGETS}"
|
|
done
|
|
|
|
lupdate ${TARGETS} -ts mupen64plus*.ts
|
|
|