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
this is obviously not a bug, but i think the readability could be improved by using POSIX parameter expansion.
the following is equivalent to the test-clause above:
:${BASE_RELEASE_COMPRESS:=yes}
from the bash manpage:
${parameter:=word}Assign Default Values. If parameter is unset or null, the expansion of word is assigned to parameter. The value of parameter is then substituted. Positional parameters and special parameters may not be assigned to in this way.
The text was updated successfully, but these errors were encountered:
the modules are full of default-assignments like so:
CustomPiOS/src/modules/base/config
Line 13 in f6fea14
this is obviously not a bug, but i think the readability could be improved by using POSIX parameter expansion.
the following is equivalent to the test-clause above:
from the bash manpage:
The text was updated successfully, but these errors were encountered: