Skip to content

Commit 2d12113

Browse files
authored
remove extra space from assignment
it was breaking os detection for distros with `/etc/lsb-release`
1 parent 31f5c77 commit 2d12113

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

run-gow

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -254,7 +254,7 @@ function os_type() {
254254
os="unraid"
255255
elif [ -f /etc/lsb-release ]; then
256256
# shellcheck disable=1091
257-
os= "$(source /etc/lsb-release; echo "$DISTRIB_ID")"
257+
os="$(source /etc/lsb-release; echo "$DISTRIB_ID")"
258258
elif [ -f /etc/os-release ]; then
259259
# shellcheck disable=1091
260260
os="$(source /etc/os-release; echo "$ID")"

0 commit comments

Comments
 (0)