We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 82dfdd6 commit 510d831Copy full SHA for 510d831
tools/migrate_gul14_to_gul17.bash
@@ -38,6 +38,10 @@ handle_control_file() {
38
sed -i -E -e 's/dev-doocs-libgul14/gul17-dev/g' "$1"
39
}
40
41
+handle_gitlab_ci_file() {
42
+ sed -i -E -e 's/dev-doocs-libgul14/gul17-dev/g' "$1"
43
+}
44
+
45
handle_meson_file() {
46
sed -i -E \
47
-e 's/(dependency\s*\(\s*)'"'libgul14'/\1'gul17'"'/g' \
@@ -95,6 +99,11 @@ for dir in "$@"; do
95
99
handle_control_file "${dir}/debian/control"
96
100
fi
97
101
102
+ # Gitlab CI file
103
+ if [ -f "${dir}/.gitlab-ci.yml" ]; then
104
+ handle_gitlab_ci_file "${dir}/.gitlab-ci.yml"
105
+ fi
106
98
107
# wrap file
108
if [ -d "${dir}/subprojects" ]; then
109
if [ ! -e "${dir}/subprojects/gul17.wrap" ]; then
0 commit comments