aboutsummaryrefslogblamecommitdiffstatshomepage
path: root/src/os.sh
blob: 60c0f9af350be1404253d33da830b050c8a9764f (plain) (tree)
1
2
3
4
5
6
7
8
9
                                                        
                                                         




                                                               
             
                              



                                 
                                      
                                      














                                                                       
# Copyright (c) 2016 Egor Tensin <Egor.Tensin@gmail.com>
# This file is part of the "Config file sharing" project.
# For details, see https://github.com/egor-tensin/config-links.
# Distributed under the MIT License.

# Mostly Cygwin-related stuff

is_cygwin() {
    test "$OSTYPE" == 'cygwin'
}

check_symlinks_enabled_cygwin() {
    case "${CYGWIN-}" in
        *winsymlinks:nativestrict*) ;;
        *winsymlinks:native*)       ;;

        *)
            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
}