Pinjasaur / bic

Static blog generator, in bash
https://bic.sh/
10 stars 1 forks source link

fix: use `BIC_OVERWRITE` when `cp`ing static/ too #21

Closed Pinjasaur closed 2 months ago

Pinjasaur commented 2 months ago

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 and echoing in n so it would fail.

Also: bumped a few different versions of things.

Pinjasaur commented 2 months ago

@mfossen if you're up for a review I'd appreciate the 👀