Skip to content

Commit

Permalink
build: fix file mode of shell scripts (644 -> 755)
Browse files Browse the repository at this point in the history
Some shell scripts are not executable, so fix their file modes:

    $ git grep -Elz '^#!/bin/(ba)?sh' | xargs -0 -I '{}' \
      chmod +x '{}'

Files changed:

* src/fgit/fgit-uninstall.sh
* src/tools/extract_errnos.sh

Note: I have manually checked that the files above are indeed intended
to be executable directly and not just sourced, as a script of the
latter kind could also contain a shebang (for example, to help ensure
proper syntax highlighting).

Misc: The affected files were added on commit e46dd3e ("git-install",
2017-02-04) and on commit 081d1fb ("Add seccomp errno filter support",
2015-09-23) / PR #66, respectively.
  • Loading branch information
kmk3 committed Jun 16, 2022
1 parent 1558037 commit 8169369
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 0 deletions.
Empty file modified src/fgit/fgit-uninstall.sh
100644 → 100755
Empty file.
Empty file modified src/tools/extract_errnos.sh
100644 → 100755
Empty file.

0 comments on commit 8169369

Please sign in to comment.