Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Use mkdir -p instead of ignoring return code #675

Open
wants to merge 2 commits into
base: master
Choose a base branch
from

Commits on Sep 9, 2024

  1. Don't ignore the return value from rm -rf

    The `-f` option causes `rm` to silently ignore files that don't exist,
    so `rm -rf` will only fail if `rm` has trouble deleting a file that
    exists.  We want `make` to fail in that situation.
    rhansen committed Sep 9, 2024
    Configuration menu
    Copy the full SHA
    1dab7b2 View commit details
    Browse the repository at this point in the history
  2. Use mkdir -p instead of ignoring return code

    We want `make` to fail if the directory doesn't exist and can't be
    made for some reason.
    rhansen committed Sep 9, 2024
    Configuration menu
    Copy the full SHA
    33c38a7 View commit details
    Browse the repository at this point in the history