Skip to content

Commit

Permalink
Fix command to move examplepkg log files
Browse files Browse the repository at this point in the history
The extra `&&` breaks the mv command.

Signed-off-by: Bram Mertens <bmertens@redhat.com>
  • Loading branch information
m8ram authored and Bram Mertens committed May 30, 2024
1 parent 94ddb2f commit 083303f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/src/building/guidance.md
Original file line number Diff line number Diff line change
Expand Up @@ -166,7 +166,7 @@ to `/var`:

```dockerfile
RUN apt|dnf install examplepkg && \
mv /opt/examplepkg/logs && /var/log/examplepkg && \
mv /opt/examplepkg/logs /var/log/examplepkg && \
ln -sr /opt/examplepkg/logs /var/log/examplepkg
```

Expand Down

0 comments on commit 083303f

Please sign in to comment.