Skip to content

Commit

Permalink
Merge pull request #587 from Aigrefin/patch-1
Browse files Browse the repository at this point in the history
[BUG] build do not fail when cleaning up but there is no lock files
  • Loading branch information
batmat committed Jan 11, 2019
2 parents 0c4f1b9 + a1a9790 commit a23c3a4
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion install-plugins.sh
Original file line number Diff line number Diff line change
Expand Up @@ -259,7 +259,10 @@ main() {
fi

echo "Cleaning up locks"
rm -r "$REF_DIR"/*.lock
find "$REF_DIR" -regex ".*.lock" | while read -r filepath; do
rm -r "$filepath"
done

}

main "$@"

0 comments on commit a23c3a4

Please sign in to comment.