forked from github/server
it was all a lua syntax error. good grief. that should go to stderr!
This commit is contained in:
parent
50f22d7c2f
commit
3ee023cdd6
|
@ -60,7 +60,7 @@ local function write_emails(locales)
|
|||
end
|
||||
|
||||
local function join_path(a, b)
|
||||
if a then return a .. '/' .. b
|
||||
if a then return a .. '/' .. b end
|
||||
return b
|
||||
end
|
||||
|
||||
|
@ -99,8 +99,10 @@ local function write_htpasswd()
|
|||
local out = io.open(join_path(config.basepath, "htpasswd"), "w")
|
||||
if out then
|
||||
for f in factions() do
|
||||
if f.password then
|
||||
out:write(itoa36(f.id) .. ":" .. f.password .. "\n")
|
||||
end
|
||||
end
|
||||
out:close()
|
||||
end
|
||||
end
|
||||
|
|
Loading…
Reference in New Issue