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.
15 lines
292 B
15 lines
292 B
4 weeks ago
|
#!/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/
|