Closed iwakuraSSBM closed 3 years ago
Changed the if statement to include a test, as it was always resulting in true and not allowing the script to run. Exchanged type for command -v which allows use test -n, to see if the string is empty or not.
type
command -v
test -n
Changed the if statement to include a test, as it was always resulting in true and not allowing the script to run. Exchanged
type
forcommand -v
which allows usetest -n
, to see if the string is empty or not.