You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
uses sopsCreateGPGHome, which may be unbound (unless the user has set it). Since this file gets sourced into shells, it can break when it’s sourced into a shell with nounset (set -u) enabled (which I have just run into).
This should either also check that the variable is bound
if [ -v sopsCreateGPGHome &&-n"${sopsCreateGPGHome}" ];then
or should bind it preemptively
sopsCreateGPGHome=
…
if [ -n"${sopsCreateGPGHome}" ];then
The text was updated successfully, but these errors were encountered:
On line 3,
uses
sopsCreateGPGHome
, which may be unbound (unless the user has set it). Since this file gets sourced into shells, it can break when it’s sourced into a shell withnounset
(set -u
) enabled (which I have just run into).This should either also check that the variable is bound
or should bind it preemptively
The text was updated successfully, but these errors were encountered: