summaryrefslogtreecommitdiffstats
path: root/examples
diff options
context:
space:
mode:
authorMatthias Beyer <mail@beyermatthias.de>2020-10-13 21:05:02 +0200
committerMatthias Beyer <mail@beyermatthias.de>2020-10-13 21:05:02 +0200
commit71a54205d7a4052a29eef852a01371dccfce6c08 (patch)
treed8d14c401596c85245729143128fe43bcaee760d /examples
parent43ee90a1de0e07d8bc8f30257fd981e52896fbce (diff)
Fix: Do not fail if removal did not work
Signed-off-by: Matthias Beyer <mail@beyermatthias.de>
Diffstat (limited to 'examples')
-rw-r--r--examples/packages/example_1/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/packages/example_1/Makefile b/examples/packages/example_1/Makefile
index 5cb6a74..52c87ef 100644
--- a/examples/packages/example_1/Makefile
+++ b/examples/packages/example_1/Makefile
@@ -2,7 +2,7 @@ REPO=/tmp/yabos_example_1
setup:
@echo Setting up repository in ${REPO}
- @rm -r ${REPO}
+ @rm -r ${REPO} || true
@mkdir -p ${REPO}
@cp -r . ${REPO}/
@echo Ready.