mirror of
https://invent.kde.org/network/falkon.git
synced 2024-11-11 09:32:12 +01:00
6ec593f436
- also updated translations scripts - updated translations
13 lines
275 B
Bash
Executable File
13 lines
275 B
Bash
Executable File
#!/bin/bash
|
||
|
||
## circular inclusions workaround - we comment that buggy line
|
||
sed -i 's/include(3rdparty/##temp/g' ../src/src.pro
|
||
|
||
lupdate ../src/src.pro
|
||
|
||
## uncomment it now
|
||
sed -i 's/##temp/include(3rdparty/g' ../src/src.pro
|
||
|
||
read -p "Press [ENTER] to close terminal"
|
||
exit
|