mirror of
https://github.com/torproject/collector.git
synced 2024-11-23 09:29:46 +00:00
Actually fix #26193 now.
The earlier attempt to fix this issue in 98244f3
did not work, because
it was missing the important `-f` switch.
This commit is contained in:
parent
78fbb4d60e
commit
5e1ae90ec4
@ -1,3 +1,10 @@
|
||||
# Changes in version 1.?.? - 2018-0?-??
|
||||
|
||||
* Minor changes
|
||||
- Once more, fix the bug in the tarball-creation script where
|
||||
tarballs are not compressed in a run following an aborted run.
|
||||
|
||||
|
||||
# Changes in version 1.7.0 - 2018-07-14
|
||||
|
||||
* Medium changes
|
||||
|
@ -100,7 +100,7 @@ for (( i = 0 ; i < ${#TARBALLS[@]} ; i++ )); do
|
||||
echo `date` "Creating" ${TARBALLS[$i]}'.tar'
|
||||
tar chf ${TARBALLS[$i]}.tar ${TARBALLS[$i]}
|
||||
echo `date` "Compressing" ${TARBALLS[$i]}'.tar'
|
||||
xz -9e ${TARBALLS[$i]}.tar
|
||||
xz -9e -f ${TARBALLS[$i]}.tar
|
||||
done
|
||||
|
||||
cd $OUTDIR/webstats/
|
||||
|
Loading…
Reference in New Issue
Block a user