_parseFilename_: don't require file exists

This commit is contained in:
Nathaniel Landau
2021-08-22 17:32:51 -04:00
parent 8584cbd2de
commit c6da915e6a
2 changed files with 0 additions and 11 deletions

View File

@@ -157,11 +157,6 @@ _parseFilename_() {
local fileToParse="${1}"
[[ -f ${fileToParse} ]] || {
error "Can't locate a file to parse at: ${fileToParse}"
return 1
}
PARSE_FULL="$(realpath "${fileToParse}")" \
&& debug "\${PARSE_FULL}: ${PARSE_FULL:-}"
PARSE_BASE=$(basename "${fileToParse}") \