mirror of
https://github.com/cachix/install-nix-action.git
synced 2025-06-07 17:44:28 +00:00
test installer options
This commit is contained in:
parent
0598b739d8
commit
20d5bae58c
2 changed files with 19 additions and 1 deletions
|
@ -28,7 +28,8 @@ installer_options=(
|
|||
--nix-extra-conf-file /tmp/nix.conf
|
||||
)
|
||||
if [[ $INPUT_INSTALL_OPTIONS != "" ]]; then
|
||||
installer_options=("${installer_options[@]}" "${INPUT_INSTALL_OPTIONS[@]}")
|
||||
IFS=' ' read -r -a extra_installer_options <<< $INPUT_INSTALL_OPTIONS
|
||||
installer_options=("${extra_installer_options[@]}" "${installer_options[@]}")
|
||||
fi
|
||||
|
||||
echo "installer options: ${installer_options[@]}"
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue