Skip to content

Commit

Permalink
Code & Features Update
Browse files Browse the repository at this point in the history
  • Loading branch information
nathaneltitane committed Jan 5, 2025
1 parent ef5e55a commit 9241d72
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion frobulator
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,12 @@ stamp=$(date +"%m-%d-%Y-%H-%M-%S")

if [ -z "${SHELL}" ]
then
SHELL=/bin/bash
if [[ $(command -v /bin/bash) ]]
then
SHELL=$(command -v /bin/bash)
else
SHELL=$(command -v /usr/bin/bash)
fi
else
SHELL="${SHELL}"
fi
Expand Down

0 comments on commit 9241d72

Please sign in to comment.