vimrc: Set modelines=0 to avoid security issues
[cmccabe-etc] / install-symlinks.sh
index 820d5b3..3ca68a4 100755 (executable)
@@ -41,7 +41,7 @@ for file in ${BASEDIR}/.[^.]*; do
        # skip files which we don't want to link
        [ "${basefile}" == ".git" ] && continue
        [ "${basefile}" == ".gitignore" ] && continue
-       #[ "${basefile}" == ".ssh" ] && continue
+       [ "${basefile}" == ".ssh" ] && continue
 
        pushd .. > /dev/null
        if [ -L ${basefile} ]; then
@@ -65,3 +65,10 @@ if [ $copy_ssh_old -eq 1 ]; then
     echo "chmod 600 ../.ssh/config"
     chmod 600 ../.ssh/*
 fi
+
+# Install .gradle/.gradle.properties
+mkdir -p ../.gradle
+pushd ../.gradle
+rm -f ./gradle.properties
+ln -s ../.gradle.properties  ./gradle.properties 
+popd