Merge pull request #80 from Apollorion/master

feat(src): fix input path issue
This commit is contained in:
Miguel Silva
2023-02-03 11:16:27 +00:00
committed by GitHub

View File

@ -8,6 +8,7 @@ if [ -z "$INPUT_PATH" ]; then
echo "${DATETIME} - ERR input path can't be empty"
exit 1
else
INPUT_PATH=$(echo $INPUT_PATH | sed -e 's/^"//' -e 's/"$//')
INPUT_PARAM="-p $INPUT_PATH"
fi