Skip to content

Bash "safe mode" in upgrade_mattermost.sh is broken #9082

Description

@eric-j-ason

# Immediately exit if a command run from a loop, a pipeline or a compound
# command statement fails or a variable is used unset.
set -o errexit nounset

To match the comment, the actual command should be like this:

set -o errexit -o nounset -o pipefail

This makes nounset actually take effect, and enables the pipe failure thing.

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions