Skip to content
This repository has been archived by the owner on Feb 20, 2022. It is now read-only.

Commit

Permalink
Make sure all files in argument are taken into account
Browse files Browse the repository at this point in the history
  • Loading branch information
Muriel-Salvan authored and neenjaw committed May 7, 2021
1 parent a3a73c9 commit 3e7d651
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion entrypoint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ function main {

shift $(( OPTIND - 1 ))

for in_file in "$@"; do
for in_file in $@; do
if [[ -f "${in_file}" ]]; then
printf "Attempting compile of: %s\n" "${in_file}"

Expand Down

0 comments on commit 3e7d651

Please sign in to comment.