From 989c0ed39332fe705dfbbc1182640229a5aaeeb5 Mon Sep 17 00:00:00 2001 From: Jared Ballou Date: Tue, 19 Jan 2016 01:11:32 -0500 Subject: [PATCH] Missed a -p in mkdir for github fetch --- Insurgency/insserver | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Insurgency/insserver b/Insurgency/insserver index 5e022c708..98bb5f1ef 100755 --- a/Insurgency/insserver +++ b/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"