From 81693691489a5a00705fde1cff86cf834167d0c1 Mon Sep 17 00:00:00 2001 From: "Kelvin M. Klann" Date: Thu, 16 Jun 2022 18:14:46 -0300 Subject: build: fix file mode of shell scripts (644 -> 755) 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 e46dd3e95 ("git-install", 2017-02-04) and on commit 081d1fbf2 ("Add seccomp errno filter support", 2015-09-23) / PR #66, respectively. --- src/fgit/fgit-uninstall.sh | 0 src/tools/extract_errnos.sh | 0 2 files changed, 0 insertions(+), 0 deletions(-) mode change 100644 => 100755 src/fgit/fgit-uninstall.sh mode change 100644 => 100755 src/tools/extract_errnos.sh (limited to 'src') diff --git a/src/fgit/fgit-uninstall.sh b/src/fgit/fgit-uninstall.sh old mode 100644 new mode 100755 diff --git a/src/tools/extract_errnos.sh b/src/tools/extract_errnos.sh old mode 100644 new mode 100755 -- cgit v1.2.3-70-g09d2