1

fix sep bug

This commit is contained in:
Evan Pratten 2024-04-02 14:21:52 -04:00
parent f8b9d16b5c
commit 54760b73c4

View File

@ -1,12 +1,5 @@
#! /bin/bash
set -e
# Determine this platform's path separator
if [ $(uname -o | grep -c Msys) -gt 0 ]; then
pathsep=";"
else
pathsep=":"
fi
# Print each entry in $PATH on its own line
echo $PATH | tr $pathsep '\n'
echo $PATH | tr ':' '\n'