guile-user
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: GUILE FAQ


From: thi
Subject: Re: GUILE FAQ
Date: Mon, 22 Jan 2001 14:09:28 -0800

fyi, new (simpler) cron job.  the old used names that reflect a previous
implementation using rsync.  however, "rsync -C" interacts badly w/ some
of the .cvsignore files, which contrary to our goal, prevented synching
of *.info* files!

thi


___________________________
#!/bin/sh
# -*- scheme -*-
exec guile -s $0 "$@"
!#

(use-modules (ttn cron) (ttn shellutils))

(define guile-doc-info-dir "/home/ttn/build/www.glug.org/docbits/guile-doc")

(define (install-docs to)
  (system "cvs update")
  (system "./autogen.sh")
  (system* "./configure --infodir" to)
  (system* "make install"))

(cron (command-line)
      ((daily) (install-docs guile-doc-info-dir)))



reply via email to

[Prev in Thread] Current Thread [Next in Thread]