Add missing function argument
This commit is contained in:
parent
597fa1ee1f
commit
e20681a1bd
2 changed files with 2 additions and 2 deletions
|
@ -54,7 +54,7 @@ function backupAction -V dir
|
|||
if [ -n "$deployScript" ]
|
||||
for name in (getUsers | jq '.[]' --raw-output0 | string split0)
|
||||
echo "Backing up user `$name`..."
|
||||
and source $deployScript userBackup $name
|
||||
and source $deployScript userBackup --user $name
|
||||
end
|
||||
end
|
||||
end
|
||||
|
|
|
@ -34,7 +34,7 @@ function installAction -V dir
|
|||
|
||||
for name in (getUsers | jq '.[]' --raw-output0 | string split0)
|
||||
echo "Configuring user `$name`..."
|
||||
and source $deployScript userConfig $name
|
||||
and source $deployScript userConfig --user $name
|
||||
end
|
||||
end
|
||||
end
|
||||
|
|
Loading…
Reference in a new issue