bash is sending me over the edge again.
This:
echo $desc $commit_string
Prints this:
description "tmux split-window subcommand.md"
But this, run from a script (or even from the command line):
git commit -m "$desc" "$commit_string"
Results in this:
error: pathspec '"tmux split-window subcommand.md"' did not match any file(s) known to git
But this, run from the directory the file is in, works fine:
git commit -m 'description' "tmux split-window subcommand.md"
I've spent at least an hour on this and have tried everything under the sun.