blob: 2a532cd66fbbf956a90adc058dfaac85a4e4cc07 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
# Copyright (c) 2016 Egor Tensin <Egor.Tensin@gmail.com>
# This file is part of the "Configuration file sharing" project.
# For details, see https://github.com/egor-tensin/config-links.
# Distributed under the MIT License.
# Mostly Cygwin-related stuff
os="$( uname -o )"
readonly os
is_cygwin() {
test "$os" == 'Cygwin'
}
check_symlinks_enabled_cygwin() {
case "${CYGWIN-}" in
*winsymlinks:native*) ;;
*winsymlinks:nativestrict*) ;;
*)
dump "native Windows symlinks aren't enabled in Cygwin" >&2
return 1
;;
esac
}
check_symlinks_enabled() {
if is_cygwin; then
check_symlinks_enabled_cygwin
else
return 0
fi
}
|