You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# Check each folder's `README.md` file out of the code repository in case they were
# mistakenly removed and/or corrupted during maintenance procedures..
#
read -t 2 -p "Are you sure you want to checkout each folder's README.md file from the repository (this should only be done if they were removed by mistake)? [y/N]: " ANSWER
[ "$ANSWER" -a "${ANSWER[0]}" != "y" -a "${ANSWER[0]}" != "Y" ] && exit 1
while [ ! -d .git ]
do cd ..
declare cdirname=$( basename `pwd` )
[[ $cdirname == 'GIT' ]] && exit 1
done
declare -a xdirnames=$( find . -maxdepth 1 -type d -not -name '.*' -print )