Skip to content

Commit

Permalink
fix: strip trailing spaces
Browse files Browse the repository at this point in the history
  • Loading branch information
HassanBahati committed Nov 16, 2024
1 parent 3b29877 commit 994eeb4
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,9 @@ runs:
else
echo "No spaces detected in emulators list."
fi
# Remove trailing comma if it exists
EMULATORS=$(echo "$EMULATORS" | sed 's/,$//')
# Output the result for debugging purposes
echo "Stripped emulators list: $EMULATORS"
Expand Down

0 comments on commit 994eeb4

Please sign in to comment.