Skip to content

Commit

Permalink
Update test-ci.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
markusweigelt authored Dec 14, 2023
1 parent 7f99393 commit c817adc
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/test-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,8 @@ jobs:
# Rename example .env file
mv .env.example .env
# Remove empty lines
sed -i /^$/d .env
# Remove carriage returns in file
sed -i 's/\r$//' .env
# Set environment variables from .env file
set -a; source .env; set +a
Expand All @@ -38,8 +38,8 @@ jobs:
mkdir -p ./ocrd/controller/.ssh/ ./ocrd/controller/models
wget -O .env.ocrd-controller https://raw.githubusercontent.com/slub/ocrd_controller/master/.env.example
# Remove empty lines
sed -i /^$/d .env.ocrd-controller
# Remove carriage returns in file
sed -i 's/\r$//' .env.ocrd-controller
# Set environment variables from .env.ocrd-controller file
set -a; source .env.ocrd-controller; set +a
Expand Down

0 comments on commit c817adc

Please sign in to comment.