On 03/01/2014 16:41, Lluís Batlle i Rossell wrote:
On Fri, Jan 03, 2014 at 04:36:26PM +0000, Roy Marples wrote:
Hi List

Can fossil create an archive (tarball, zip file, etc) from a given
artifact id WITHOUT using the web interface?
Something like this is what I need:
$ fossil archive ?ID | bzip2 > distribution-version.tar.bz2

Hi,

fossil tarball.

This works well, thanks.
To use an alternate compression I can simply gunzip | bzip2 as this Makefile snippet shows

FOSSILID?= current

dist:
        fossil tarball --name ${DISTPREFIX} ${FOSSILID} ${DISTFILEGZ}
        gunzip -c ${DISTFILEGZ} | bzip2 >${DISTFILE}
        rm ${DISTFILEGZ}

Thanks

Roy
_______________________________________________
fossil-users mailing list
fossil-users@lists.fossil-scm.org
http://lists.fossil-scm.org:8080/cgi-bin/mailman/listinfo/fossil-users

Reply via email to