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

fix: detection of changed files that might cause failure on some paths 🍭 #286

Merged
merged 2 commits into from
Aug 10, 2023

Commits on Aug 10, 2023

  1. fix: detection of changed files that might cause failure on some paths

    By using `-z` option of `git diff` we can get the file paths without
    extra spaces, newlines and quotes. Previously this caused issues like:
    
    ```sh
    + head -n1 '"test/fuzz/fuzz-unit-file/dm-back\\x2dslash.swap"'
    head: cannot open '"test/fuzz/fuzz-unit-file/dm-back\\x2dslash.swap"' for reading: No such file or directory
    ```
    jamacku committed Aug 10, 2023
    Configuration menu
    Copy the full SHA
    ac11e6a View commit details
    Browse the repository at this point in the history
  2. drop: clean_array() function - not needed

    Since we are using git with `-z` flag, we no longer need `clean_array()` functionality.
    jamacku committed Aug 10, 2023
    Configuration menu
    Copy the full SHA
    5fe0863 View commit details
    Browse the repository at this point in the history