Skip to content

Commit b903f4f

Browse files
committedJun 3, 2024
fix to detect macOS
1 parent 71352e5 commit b903f4f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎.bashrc

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ alias fgrep='fgrep --color=auto'
2525
alias egrep='egrep --color=auto'
2626
alias t='tmux'
2727
# macOS-like commands
28-
if [[ ! is_darwin ]]; then
28+
if ! is_darwin; then
2929
alias open='xdg-open'
3030
alias pbcopy='xclip -selection c'
3131
alias pbpaste='xclip -selection c -o'

0 commit comments

Comments
 (0)
Please sign in to comment.