Skip to content

Commit

Permalink
-r
Browse files Browse the repository at this point in the history
  • Loading branch information
yegor256 committed Feb 19, 2024
1 parent 04d2f02 commit 24fb6b3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions entry.sh
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ cd "${GITHUB_WORKSPACE-/w}"
tlmgr option repository ctan
tlmgr --verify-repo=none update --self

read -a packages <<< "${INPUT_PACKAGES}"
read -r -a packages <<< "${INPUT_PACKAGES}"
if [ -n "${INPUT_DEPENDS}" ]; then
while IFS= read -r p; do
packages+=( "${p}" )
Expand All @@ -45,5 +45,5 @@ fi
cd "${INPUT_PATH-.}"
ls -al

read -a opts <<< "${INPUT_OPTS}"
read -r -a opts <<< "${INPUT_OPTS}"
${INPUT_CMD} "${opts[@]}"

0 comments on commit 24fb6b3

Please sign in to comment.