Skip to content

Commit a8f1a72

Browse files
committed
Fix orb YAML parsing: replace heredoc with echo commands for coveralls config
1 parent ee1bf6c commit a8f1a72

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

.circleci/orb/freegle-tests.yml

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -699,10 +699,7 @@ commands:
699699
700700
# Create coveralls config in container
701701
echo "DEBUG: Creating .coveralls.yml in container..."
702-
docker exec freegle-apiv1 bash -c "cat > /var/www/iznik/.coveralls.yml << 'EOFCFG'
703-
coverage_clover: clover.xml
704-
service_name: circleci
705-
EOFCFG"
702+
docker exec freegle-apiv1 bash -c "echo 'coverage_clover: clover.xml' > /var/www/iznik/.coveralls.yml && echo 'service_name: circleci' >> /var/www/iznik/.coveralls.yml"
706703
707704
# Run php-coveralls from within the container (which has PHP)
708705
echo "DEBUG: Running php-coveralls in container..."

0 commit comments

Comments
 (0)