diff options
Diffstat (limited to 'functions')
-rwxr-xr-x | functions/stagefile.sh | 14 |
1 files changed, 10 insertions, 4 deletions
diff --git a/functions/stagefile.sh b/functions/stagefile.sh index 9ef4789c9..f51144bd3 100755 --- a/functions/stagefile.sh +++ b/functions/stagefile.sh @@ -11,8 +11,8 @@ Check_stagefile () { - FILE="${1}" - NAME="$(basename ${1})" + FILE=".build/${1}" + NAME="$(basename ${FILE})" # Checking stage file if [ -f "${FILE}" ] @@ -32,8 +32,8 @@ Check_stagefile () Create_stagefile () { - FILE="${1}" - DIRECTORY="$(dirname ${1})" + FILE=".build/${1}" + DIRECTORY="$(dirname ${FILE})" # Creating stage directory mkdir -p "${DIRECTORY}" @@ -42,6 +42,11 @@ Create_stagefile () touch "${FILE}" } +Remove_stagefile () +{ + rm -f ".build/${1}" +} + Require_stagefile () { local NAME @@ -55,6 +60,7 @@ Require_stagefile () local CONTINUE=false for FILE in ${FILES} do + FILE=".build/${FILE}" # Find at least one of the required stages if [ -f ${FILE} ] then |