49b2e2d658
- Updated Sublime Preferences - Removed deprecated paths for ptolemy - Removed deprecated paths for Stellaris Coding
9 lines
103 B
Bash
9 lines
103 B
Bash
typeset -U path
|
|
|
|
pathdirs=()
|
|
|
|
for dir in $pathdirs; do
|
|
if [ -d $dir ]; then
|
|
path+=$dir
|
|
fi
|
|
done
|