Skip to content

Commit

Permalink
Fix command to move xamplepkg log files
Browse files Browse the repository at this point in the history
The extra `&&` breaks the mv command.
  • Loading branch information
m8ram committed May 30, 2024
1 parent 94ddb2f commit 11cb167
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 11cb167

Please sign in to comment.