GitHub Sale: sign up for any paid plan this week and pay nothing until January 1, 2009!  [ hide ]

public
Description: The web site for the Nu programming language
Homepage: http://programming.nu
Clone URL: git://github.com/timburks/programmingnu.git
programmingnu / Nukefile
100644 16 lines (9 sloc) 0.312 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
(task "build" is
      (SH "nush builder.nu"))
 
(task "preview" is
      (SH "nunjad -s site"))
 
(task "publish" is   ;; requires a password
      (SH "rsync -ave ssh site/public/ programming.nu:/projects/sites/programming.nu/public/"))
 
(task "clean" is
      (SH "rm -rf site"))
 
(task "default" => "build")