mirror of
https://invent.kde.org/network/falkon.git
synced 2024-11-11 01:22:10 +01:00
12 lines
147 B
Bash
Executable File
12 lines
147 B
Bash
Executable File
#!/bin/bash
|
||
|
||
cd ../src/plugins
|
||
|
||
for pluginPro in */*.pro
|
||
do
|
||
lupdate $pluginPro -no-obsolete
|
||
done
|
||
|
||
read -p "Press [ENTER] to close terminal"
|
||
exit
|