diff options
author | EuAndreh <eu@euandre.org> | 2021-07-27 11:31:02 -0300 |
---|---|---|
committer | EuAndreh <eu@euandre.org> | 2021-07-27 11:58:44 -0300 |
commit | 9e84b309cd0807ff029660d2f42a2397334efb2b (patch) | |
tree | d10f193190726891ff739ecb6655359166947bb5 /aux/workflow/installcheck.sh | |
parent | TODOs.md: Add #task-1f103822-c865-254c-f6b6-4968f2fb473e (diff) | |
download | git-permalink-9e84b309cd0807ff029660d2f42a2397334efb2b.tar.gz git-permalink-9e84b309cd0807ff029660d2f42a2397334efb2b.tar.xz |
aux/: Stick to 80 columns
Diffstat (limited to 'aux/workflow/installcheck.sh')
-rwxr-xr-x | aux/workflow/installcheck.sh | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/aux/workflow/installcheck.sh b/aux/workflow/installcheck.sh index e28f5d1..0aae391 100755 --- a/aux/workflow/installcheck.sh +++ b/aux/workflow/installcheck.sh @@ -28,7 +28,8 @@ shift $((OPTIND - 1)) if [ -n "${UNINSTALL:-}" ]; then if [ "$(find "$PREFIX" -type f | wc -l)" != 0 ]; then - printf 'When uninstalling, left over files in the PREFIX directory:\n' + printf 'When uninstalling, left over files in the' + printf 'PREFIX directory:\n' find "$PREFIX" -type f exit 1 fi |