Skip to content
Snippets Groups Projects
Commit 6c70211a authored by Boris Baldassari's avatar Boris Baldassari
Browse files

#5 Fix bug in jenkins get.


Signed-off-by: default avatarBoris Baldassari <boris@chrysalice.org>
parent ef8fa0f3
No related branches found
No related tags found
No related merge requests found
......@@ -46,8 +46,8 @@ pipeline {
echo "Building website."
cd scripts/ && sh ./build_website.sh
echo "Cleaning website zone from non-compressed files."
find ../website/public/ -name "*.csv" -exec rm {} \;
find ../website/public/ -name "git*.txt" -exec rm {} \;
find ../website/public/ -name "*.csv" | xargs rm -rf
find ../website/public/ -name "git*.txt" | xargs rm -rf
'''
}
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment