Skip to content

Commit bf03349

Browse files
Fix(brew): asset_urls: unbound variable (#547)
* Fix missing x86_64 arch on brew installation * Fix(brew): unbound variable on asset_urls
1 parent 8717f70 commit bf03349

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

modules/brew/brew.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ if [[ "${DIRECT_PULL}" == true ]]; then
111111
rm -rf /home/linuxbrew/.linuxbrew
112112
else
113113
# Download pre-packaged Brew from uBlue repo
114-
assets_urls=$(curl -fLsS --retry 5 'https://api.github.com/repos/ublue-os/packages/releases' |
114+
asset_urls=$(curl -fLsS --retry 5 'https://api.github.com/repos/ublue-os/packages/releases' |
115115
jq -cr '[.[] | .assets[]]
116116
| map({(.name): .browser_download_url})
117117
| add')

0 commit comments

Comments
 (0)