commit 9dbb87dcbfc404333713a0d24459532bb064d58b
parent 3f694094191df0918ac1397a7263905a86c27910
Author: phoebos <ben@bvnf.space>
Date: Tue, 14 Jan 2025 15:57:52 +0000
update doc
Diffstat:
2 files changed, 6 insertions(+), 1 deletion(-)
diff --git a/bliss/update.lua b/bliss/update.lua
@@ -1,8 +1,11 @@
+--- Repository updating.
+-- @module bliss.update
local utils = require "bliss.utils"
local unistd = require "posix.unistd"
+--- The update action.
local function update(env, arg)
- -- args are ignored.
+ -- arg is ignored.
utils.log("Updating repositories")
local repos = {}
@@ -26,6 +29,7 @@ local function update(env, arg)
end
+--- @export
local M = {
update = update,
}
diff --git a/config.ld b/config.ld
@@ -22,5 +22,6 @@ file = {
"bliss/pkg.lua",
"bliss/search.lua",
"bliss/tsort.lua",
+ "bliss/update.lua",
"bliss/utils.lua",
}