Browse Source

Fix when repo URL has % in it

pull/26/head
Mathieu Longtin 1 year ago
committed by GitHub
parent
commit
b3f136100c
No known key found for this signature in database GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      bin/git-vendor

+ 1
- 1
bin/git-vendor View File

@ -41,7 +41,7 @@ fi
# Simulate an associative array (for older versions of bash)
var_name()
{
printf "name_$1" | tr -c '[A-Za-z0-9]' '_'
echo "name_$1" | tr -c '[A-Za-z0-9]' '_'
}
vendor_names_from_log()


Loading…
Cancel
Save