You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
310 B
16 lines
310 B
#!/bin/bash
|
|
|
|
# Create a temporary output directory
|
|
mkdir output.tmp
|
|
|
|
# Copy all HTML files over
|
|
cp -vr html/* output.tmp
|
|
|
|
# Copy the logs
|
|
mkdir output.tmp/logs
|
|
rsync -av --delete /var/log/lubuntu-ci/* output.tmp/logs/
|
|
|
|
# Make the output directory live
|
|
rsync -av --delete output.tmp/* output/
|
|
rm -rf output.tmp
|