Skip to content

Commit

Permalink
Remove bashism in the two budgie profile scripts fixes #188
Browse files Browse the repository at this point in the history
  • Loading branch information
fossfreedom committed Apr 9, 2021
1 parent 7c8320a commit 516ac4f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion etc/profile.d/10-budgie-desktop-common.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
if [[ $DESKTOP_SESSION != 'budgie-desktop' ]]
if [ $DESKTOP_SESSION != 'budgie-desktop' ]
then
return 0
fi
Expand Down
2 changes: 1 addition & 1 deletion etc/profile.d/10-budgie-desktop.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
if [[ $DESKTOP_SESSION != 'budgie-desktop' ]]
if [ $DESKTOP_SESSION != 'budgie-desktop' ]
then
return 0
fi
Expand Down

0 comments on commit 516ac4f

Please sign in to comment.