mirror of
https://github.com/cachix/install-nix-action.git
synced 2024-11-21 16:10:52 +00:00
fix: Quote variable reference
As recommended by ShellCheck.
This commit is contained in:
parent
29bd9290ef
commit
e322e039f3
1 changed files with 1 additions and 1 deletions
|
@ -54,7 +54,7 @@ else
|
|||
add_config "build-users-group ="
|
||||
sudo mkdir -p /etc/nix
|
||||
sudo chmod 0755 /etc/nix
|
||||
sudo cp $workdir/nix.conf /etc/nix/nix.conf
|
||||
sudo cp "$workdir/nix.conf" /etc/nix/nix.conf
|
||||
fi
|
||||
|
||||
if [[ $INPUT_INSTALL_OPTIONS != "" ]]; then
|
||||
|
|
Loading…
Reference in a new issue