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
if [ "${SKIP_DCH:-}" = "true" ]
if [ "${SKIP_BRANCH_AND_TAG_HANDLING:-}" = "true" ] ;
if [ -n "${SKIP_GIT_CLEANUP:-}" ] ;
if [ -n "${SKIP_QUILT_CLEANUP:-}" ] ;
It might be nice to standardize on checking whether each variable is set to true? The downside is that people setting the GIT or QUILT one manually might get a different behaviour all of a sudden… On the plus side, one of them is set automatically from another part of the script, and the info message mentions explicitly setting them to true anyway.
No practical issue except for consistency and ease of documentation (another bug report coming up).
The text was updated successfully, but these errors were encountered:
There are several ways to use
SKIP_*
variables:It might be nice to standardize on checking whether each variable is set to
true
? The downside is that people setting the GIT or QUILT one manually might get a different behaviour all of a sudden… On the plus side, one of them is set automatically from another part of the script, and the info message mentions explicitly setting them totrue
anyway.No practical issue except for consistency and ease of documentation (another bug report coming up).
The text was updated successfully, but these errors were encountered: