fix(cli): pass --root-mountpoint value as string

This commit is contained in:
Maxime Brunet 2023-03-17 16:45:07 -07:00
parent a2dec6e4e0
commit 1c9c199e49
No known key found for this signature in database
GPG key ID: 437962FF87ECFE2B

2
disko
View file

@ -72,7 +72,7 @@ while [[ $# -gt 0 ]]; do
dry_run=y
;;
--root-mountpoint)
nix_args+=(--arg rootMountPoint "$2")
nix_args+=(--argstr rootMountPoint "$2")
shift
;;
--no-deps)