From baf172aa78ebcfb0e148eb5bb645f4a1e1518025 Mon Sep 17 00:00:00 2001
From: Salt <rehashedsalt@cock.li>
Date: Sun, 11 Jul 2021 14:07:11 -0500
Subject: [PATCH] Fix bug with .profile and assigning BSD ls flags

---
 base/.profile | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/base/.profile b/base/.profile
index 9236d192..8dd5f8aa 100755
--- a/base/.profile
+++ b/base/.profile
@@ -295,7 +295,7 @@ if [ "$(uname)" = "Linux" ] || has brew; then
 else
 	# Else only assume POSIX/BSD
 	lsarguments='-F'
-	alias l="ls -$lsarguments"
+	alias l="ls $lsarguments"
 	alias la="ls -A $lsarguments"
 	alias ls="ls $lsarguments"
 	alias ll="ls -Ahl $lsarguments"