create the dir if not existing

This commit is contained in:
Daniel Hansson 2019-04-10 22:22:53 +02:00 коммит произвёл GitHub
Родитель ea64b1e55c
Коммит 127943e702
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 4 добавлений и 0 удалений

4
lib.sh
Просмотреть файл

@ -211,6 +211,10 @@ site_200() {
# 2 = name of file
# 3 = directory that the file should end up in
curl_to_dir() {
if [ ! -d "$3" ]
then
mkdir -p "$3"
fi
check_command curl -sSL "$1"/"$2" -o "$3"/"$2"
}