git: 18d74dc0cd9e - main - nuageinit: fix luacheck nit

From: Baptiste Daroussin <bapt_at_FreeBSD.org>
Date: Wed, 23 Apr 2025 14:50:35 UTC
The branch main has been updated by bapt:

URL: https://cgit.FreeBSD.org/src/commit/?id=18d74dc0cd9e832a8786a916de1af1c801cb1cb8

commit 18d74dc0cd9e832a8786a916de1af1c801cb1cb8
Author:     Baptiste Daroussin <bapt@FreeBSD.org>
AuthorDate: 2025-04-23 14:49:46 +0000
Commit:     Baptiste Daroussin <bapt@FreeBSD.org>
CommitDate: 2025-04-23 14:49:46 +0000

    nuageinit: fix luacheck nit
    
    Reported by:    jlduran
---
 libexec/nuageinit/nuage.lua | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/libexec/nuageinit/nuage.lua b/libexec/nuageinit/nuage.lua
index fffd1b6d23aa..e58069164130 100644
--- a/libexec/nuageinit/nuage.lua
+++ b/libexec/nuageinit/nuage.lua
@@ -135,7 +135,7 @@ local function adduser(pwd)
 	cmd = cmd .. extraargs .. " -c '" .. pwd.gecos
 	cmd = cmd .. "' -d '" .. pwd.homedir .. "' -s " .. pwd.shell .. postcmd
 
-	local f = io.popen(cmd, "w")
+	f = io.popen(cmd, "w")
 	if input then
 		f:write(input)
 	end