1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/scrumblr_ynh.git synced 2024-09-03 20:16:29 +02:00

Merge pull request #2 from YunoHost-Apps/fix_ynh_normalize_url_path

Fix ynh_normalize_url_path
This commit is contained in:
frju365 2017-02-12 11:11:11 +01:00 committed by GitHub
commit a859e749ba

View file

@ -1,7 +1,7 @@
#!/bin/bash
ynh_normalize_url_path () {
path=$2
path=$1
test -n "$path" || ynh_die "ynh_normalize_url_path expect a URL path as first argument and received nothing."
if [ "${path:0:1}" != "/" ]; then # If the first character is not a /
path="/$path" # Add / at begin of path variable