Skip to content

Commit

Permalink
Merge pull request #49 from gaurav-nelson/file-extension-fix
Browse files Browse the repository at this point in the history
Fixed file extension check bug
  • Loading branch information
gaurav-nelson committed Jun 9, 2020
2 parents ee0afb2 + a719754 commit 0eb8a0e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions entrypoint.sh
Expand Up @@ -18,7 +18,7 @@ FOLDER_PATH="$4"
MAX_DEPTH="$5"
CHECK_MODIFIED_FILES="$6"
BASE_BRANCH="$7"
if [ $8 -eq 0 ]; then
if [ "$8" -eq 0 ]; then
FILE_EXTENSION=".md"
else
FILE_EXTENSION="$8"
Expand Down Expand Up @@ -81,9 +81,9 @@ if [ "$CHECK_MODIFIED_FILES" = "yes" ]; then

for i in "${FILE_ARRAY[@]}"
do
if [ ${i: -3} = "${FILE_EXTENSION}" ]; then
if [ "${i##*.}" = "${FILE_EXTENSION}" ]; then
FIND_CALL+=("${i}")
COMMAND="${FIND_CALL[@]}"
COMMAND="${FIND_CALL[*]}"
$COMMAND &>> error.txt || true
unset 'FIND_CALL[${#FIND_CALL[@]}-1]'
fi
Expand Down

0 comments on commit 0eb8a0e

Please sign in to comment.