Skip to content
This repository has been archived by the owner on May 31, 2023. It is now read-only.

Commit

Permalink
Fix the lmi directory creation step in GitHub CI workflow
Browse files Browse the repository at this point in the history
Use `|` to execute each line as a separate command.
  • Loading branch information
thesiv authored and Gregory W. Chicares committed Nov 2, 2020
1 parent ca3ce61 commit 8c110e7
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -78,11 +78,11 @@ jobs:
echo "LD_LIBRARY_PATH=$LD_LIBRARY_PATH" >> $GITHUB_ENV
- name: Create lmi directories
run: >
run: |
for d in /opt/lmi /opt/lmi/print /etc/opt/lmi /srv/cache_for_lmi; do
sudo mkdir --parents $d;
sudo --preserve-env chown $NORMAL_UID $d;
done;
sudo mkdir --parents $d
sudo --preserve-env chown $NORMAL_UID $d
done
mkdir /srv/cache_for_lmi/downloads
mkdir /opt/lmi/src
Expand Down

0 comments on commit 8c110e7

Please sign in to comment.