mirror of
https://github.com/git/git.git
synced 2024-11-01 14:57:52 +01:00
12 lines
198 B
Bash
12 lines
198 B
Bash
|
#!/bin/sh
|
||
|
#
|
||
|
# Copyright (c) 2010 Ævar Arnfjörð Bjarmason
|
||
|
#
|
||
|
|
||
|
if test "$(git config --bool core.filemode)" = false
|
||
|
then
|
||
|
say 'filemode disabled on the filesystem'
|
||
|
else
|
||
|
test_set_prereq FILEMODE
|
||
|
fi
|