[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[lmi-commits] [lmi] master e90d32d 5/5: Create /opt/lmi/print directory
From: |
Vadim Zeitlin |
Subject: |
[lmi-commits] [lmi] master e90d32d 5/5: Create /opt/lmi/print directory in GitHub CI workflow |
Date: |
Mon, 5 Oct 2020 20:02:34 -0400 (EDT) |
branch: master
commit e90d32d8ea8b31156bdcb87b5c2e9284202959e4
Author: Ilya Sinitsyn <isinitsyn@tt-solutions.com>
Commit: Vadim Zeitlin <vadim@tt-solutions.com>
Create /opt/lmi/print directory in GitHub CI workflow
Create the firectory to avoid the warning while running the tests.
---
.github/workflows/ci.yml | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index 26c5eb1..0aa7c1f 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -49,7 +49,7 @@ jobs:
- name: Create lmi directories
run: >
- for d in /opt/lmi /etc/opt/lmi /srv/cache_for_lmi; do
+ 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;