Initially tried to use cp with --no-clobber/-n to fail if trying to copy a file over that already exists. But, depending on the OS the behavior isn't consistent, particularly Ubuntu which is what I use for the Dockerfile base along with the CI runner.
I pivoted to using cp--interactive-ly and echoing in n so it would fail.
closes #19
Initially tried to use
cp
with--no-clobber/-n
to fail if trying to copy a file over that already exists. But, depending on the OS the behavior isn't consistent, particularly Ubuntu which is what I use for the Dockerfile base along with the CI runner.I pivoted to using
cp
--interactive
-ly andecho
ing inn
so it would fail.Also: bumped a few different versions of things.