northstack / northstack-client

NorthStack Client
https://northstack.com
GNU General Public License v3.0
7 stars 1 forks source link

Fix show_spinner_cmd in installer #81

Closed mm-pagely closed 5 years ago

mm-pagely commented 5 years ago

show_spinner_cmd was returning 0 regardless of what the command itself returned, which is bad since we rely on set -e to bail out whenever a command fails.

Also, stop ignoring shellcheck lint error SC2155. Makes for uglier code, but less painful debug.

Instead of:

# these raise no error
local foo=$(exit 1)
export bar=$(exit 1)

Prefer:

local foo
foo=$(exit 1)

or

local foo; foo=$(exit 1)