mirror of
https://mau.dev/andreijiroh-dev/dotfiles.git
synced 2025-01-19 15:06:39 +00:00
5 lines
273 B
Text
5 lines
273 B
Text
|
#!/usr/bin/env bash
|
||
|
|
||
|
export HOMEBREW_HOME=${HOMEBREW_HOME:-"/home/linuxbrew/.linuxbrew"}
|
||
|
test -d "$HOMEBREW_HOME" && eval "$($HOMEBREW_HOME/bin/brew shellenv)"
|
||
|
[[ -r "$HOMEBREW_HOME/etc/profile.d/bash_completion.sh" ]] && . "$HOMEBREW_HOME/etc/profile.d/bash_completion.sh"
|