Skip to content

Commit

Permalink
Quoted
Browse files Browse the repository at this point in the history
  • Loading branch information
DanielWTQ committed Aug 11, 2024
1 parent 228b71a commit 7c4ff86
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 5 deletions.
2 changes: 1 addition & 1 deletion action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ runs:
path: mediawiki/${{ inputs.type }}s/${{ inputs.extension }}

- name: Install dependencies
run: bash $GITHUB_ACTION_PATH/deps.sh ${{ inputs.dependencies }} ${{ fromJSON( inputs.dependencies ) }}
run: bash $GITHUB_ACTION_PATH/deps.sh "${{ inputs.dependencies }}"
shell: bash

- name: Composer updates
Expand Down
7 changes: 3 additions & 4 deletions deps.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,9 @@
set -o pipefail

DEPENDENCIES=$1
FORMATTED=$1

echo -e "1:"
echo -e $DEPENDENCIES
echo -e "$DEPENDENCIES"

echo -e "2:"
echo -e $FORMATTED
echo $(pwd)
echo $(ls)

0 comments on commit 7c4ff86

Please sign in to comment.