mirror of
https://github.com/qgis/QGIS.git
synced 2025-02-23 00:02:38 -05:00
13 lines
285 B
Bash
13 lines
285 B
Bash
|
#!/usr/bin/env bash
|
||
|
|
||
|
DIR=$(git rev-parse --show-toplevel)
|
||
|
|
||
|
set -e
|
||
|
|
||
|
while read -r line; do
|
||
|
header="src/$line"
|
||
|
sipfile=$(sed -E 's/(.*)\.h/python\/\1.sip/' <<< $line)
|
||
|
echo "$header"
|
||
|
${DIR}/scripts/sipify.pl ${DIR}/$header > ${DIR}/$sipfile
|
||
|
done < ${DIR}/python/auto_sipfiles.txt
|