remove another extra slash and rebuild
continuous-integration/drone/push Build is failing Details

This commit is contained in:
Joe 2020-08-26 08:59:48 -05:00
parent 47d92d746d
commit 5eec3fdca2
Signed by: joe
GPG Key ID: 8595A3F8F2CE1B74
2 changed files with 2 additions and 2 deletions

2
linac
View File

@ -37,7 +37,7 @@ BuildProject() {
mapfile -t files < <(ProcessBuildFile "$1")
for ((i=0;i<"${#files[*]}";i++));do
grep -Ev '^\s*\#' "${files[$i]}";
done > "${config[build_path]}/$1.sh"
done > "${config[build_path]}$1.sh"
AddShebang "$1"
}
SubBuild() {

View File

@ -4,6 +4,6 @@ BuildProject() {
mapfile -t files < <(ProcessBuildFile "$1")
for ((i=0;i<"${#files[*]}";i++));do
grep -Ev '^\s*\#' "${files[$i]}";
done > "${config[build_path]}/$1.sh"
done > "${config[build_path]}$1.sh"
AddShebang "$1"
}