Staging
v0.8.1
swh:1:snp:c5feb7ee9221a3820c8879e85e8a18470c0b3afa
Raw File
Tip revision: f7d958dff5e194797ef6776bcc77c1349f9f8c81 authored by Junio C Hamano on 24 October 2011, 04:48:06 UTC
Git 1.7.7.1
Tip revision: f7d958d
lib-prereq-FILEMODE.sh
#!/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
back to top