Add missing function argument

This commit is contained in:
Manuel Thalmann 2024-11-28 22:11:56 +01:00
parent c533b66c4e
commit 86fecfd3e4
2 changed files with 2 additions and 2 deletions

View file

@ -54,7 +54,7 @@ function backupAction -V dir
if [ -n "$deployScript" ] if [ -n "$deployScript" ]
for name in (getUsers | jq '.[]' --raw-output0 | string split0) for name in (getUsers | jq '.[]' --raw-output0 | string split0)
echo "Backing up user `$name`..." echo "Backing up user `$name`..."
and source $deployScript userBackup $name and source $deployScript userBackup --user $name
end end
end end
end end

View file

@ -34,7 +34,7 @@ function installAction -V dir
for name in (getUsers | jq '.[]' --raw-output0 | string split0) for name in (getUsers | jq '.[]' --raw-output0 | string split0)
echo "Configuring user `$name`..." echo "Configuring user `$name`..."
and source $deployScript userConfig $name and source $deployScript userConfig --user $name
end end
end end
end end