Skip to content

Commit

Permalink
Merge pull request #108 from redjam13/master
Browse files Browse the repository at this point in the history
fix: use ACTION_CONTAINER_WORKDIR if not empty
  • Loading branch information
g105b authored Sep 13, 2023
2 parents 2ec65b6 + a5c4836 commit 8a65f0d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion composer-action.bash
Original file line number Diff line number Diff line change
Expand Up @@ -196,7 +196,7 @@ do
fi
done <<<$(env)

if [ -z "$ACTION_CONTAINER_WORKDIR" ]; then
if [ -n "$ACTION_CONTAINER_WORKDIR" ]; then
container_workdir="${ACTION_CONTAINER_WORKDIR}"
fi

Expand Down

0 comments on commit 8a65f0d

Please sign in to comment.