Skip to content
Snippets Groups Projects
Commit 6a08cd3f authored by Walter Lozano's avatar Walter Lozano
Browse files

Replace + with - on gitlab


Due to the issues with using + in the name of packages, like with gtk+2.0,
Apertis decided to replace + by - in several cases, which can be used as
default.

The current code took the approach of escaping the +, but that is not really
needed for the folding/branching process which rely on package names.

Signed-off-by: default avatarWalter Lozano <walter.lozano@collabora.com>
parent 7cdedf73
No related branches found
No related tags found
1 merge request!212Replace + with - on gitlab
Pipeline #772873 failed
......@@ -23,7 +23,7 @@ api(){
}
get-id(){
echo $1 | sed -e s,/,%2F,g -e s,+,%2B,g
echo $1 | sed -e s,/,%2F,g -e s,+,-,g
}
create-merge-request(){
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment