comparison core/src/luan/modules/host/backup.luan @ 750:f172f1dff4b6

minor
author Franklin Schmidt <fschmidt@gmail.com>
date Fri, 15 Jul 2016 01:25:08 -0600
parents 85f5444fb7d4
children
comparison
equal deleted inserted replaced
749:85f5444fb7d4 750:f172f1dff4b6
4 local print = Io.print or error() 4 local print = Io.print or error()
5 local uri = Io.uri or error() 5 local uri = Io.uri or error()
6 local Hosting = require "luan:host/Hosting.luan" 6 local Hosting = require "luan:host/Hosting.luan"
7 7
8 if #{...} ~= 2 then 8 if #{...} ~= 2 then
9 Io.stderr.write "usage: luan luan:host/update.luan domain password\n" 9 Io.stderr.write "usage: luan luan:host/backup.luan domain password\n"
10 return 10 return
11 end 11 end
12 12
13 local domain, password = ... 13 local domain, password = ...
14 14