You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
274 B
19 lines
274 B
14 years ago
|
#!/bin/bash
|
||
|
|
||
|
if [[ $1 == "" ]]; then
|
||
|
echo "Usage: uic-tqt <uic arguments>"
|
||
|
else
|
||
|
for var in "$@"
|
||
|
do
|
||
|
if [[ ${var##*.} == "ui" ]]; then
|
||
|
uifile=$var
|
||
|
fi
|
||
|
done
|
||
|
|
||
|
cp -Rp $uifile $uifile.bkp
|
||
|
tqt-replace $uifile
|
||
|
uic "$@"
|
||
|
cp -Rp $uifile.bkp $uifile
|
||
|
rm -f $uifile.bkp
|
||
|
fi
|