I'm using zsh with oh-my-zsh as my shell and I need to add the Laravel Spark Installer to my path, but I must be missing a step or messing up the syntax
I've added spark-installer to my path like this:
path+=('/Users/retrograde/Development/spark-installer')
Nothing was added to the path, so I edited it directly with:
vim ~/.zshrc
added
# Spark installer
export PATH="$HOME/Users/retrograde/Development/spark-installer:$PATH"
then ran:
source ~/.zshrc
The spark-installer does not show with the other paths upon running echo "$PATH"
Am I missing something? Maybe my syntax is wrong? TIA