mirror of
https://github.com/pivpn/pivpn.git
synced 2024-12-18 10:50:16 +00:00
Fixed shellcheck warning SC2155: "Declare and assign separately to avoid masking return values."
This commit is contained in:
parent
fe636e3f43
commit
3517f27d5b
1 changed files with 2 additions and 1 deletions
|
@ -538,7 +538,8 @@ installDependentPackages(){
|
|||
fi
|
||||
done
|
||||
|
||||
local APTLOGFILE="$($SUDO mktemp)"
|
||||
local APTLOGFILE
|
||||
APTLOGFILE="$($SUDO mktemp)"
|
||||
|
||||
if command -v debconf-apt-progress > /dev/null; then
|
||||
# shellcheck disable=SC2086
|
||||
|
|
Loading…
Reference in a new issue