Browse Source

Missed a -p in mkdir for github fetch

pull/525/head
Jared Ballou 10 years ago
parent
commit
989c0ed393
  1. 2
      Insurgency/insserver

2
Insurgency/insserver

@ -94,7 +94,7 @@ fn_getgithubfile(){
# If the function file is missing, then download
if [ ! -f "${filepath}" ]; then
if [ ! -d "${filedir}" ]; then
mkdir "${filedir}"
mkdir -p "${filedir}"
fi
githuburl="https://raw.githubusercontent.com/${githubuser}/${githubrepo}/${githubbranch}/${fileurl}"
echo -e " fetching ${filename} (${githuburl})\c"

Loading…
Cancel
Save