From 39d6c466d8217dcb3004074f29c27c60f0fa1ac1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fran=C3=A7ois=20Revol?= Date: Thu, 7 Jan 2016 22:46:58 +0100 Subject: [PATCH] dev-perso: remove unused password stuff --- 3rdparty/mmu_man/scripts/dev-perso | 14 -------------- 1 file changed, 14 deletions(-) diff --git a/3rdparty/mmu_man/scripts/dev-perso b/3rdparty/mmu_man/scripts/dev-perso index bd9ecad908..e849854ce1 100755 --- a/3rdparty/mmu_man/scripts/dev-perso +++ b/3rdparty/mmu_man/scripts/dev-perso @@ -23,10 +23,6 @@ # - edit DRLIST below to include your own possible devroots # (ie. where you have subfolders for your own projects) # or export DEVROOT before sourcing dev-perso. -# - optionally edit PWLIST below to where you possibly have a -# PASSWDS/ folder with passwords stored as plain text. -# (not really a good idea though :) It's exported -# for use by project's .profile # - optionally force EDITOR globally (for all projects) # - for each project create a .profile in the subfolder, # which might include commands like the following, but can remain empty. @@ -38,9 +34,6 @@ # # force CVSROOT for this project # export CVSROOT='...' # -# # shortcut to display password file for this svn -# alias pass="cat $PASSWDS/myself.developer.berlios.de.pass" -# # # change to the source tree # cd trunk # # ease use of cd @@ -61,13 +54,6 @@ if [ -z "$DEVROOT" ]; then fi export DEVROOT -# automagically find password files -PWLIST="/Data /fat32 $HOME" -for d in $PWLIST; do - test -d "$d/PASSWDS" && PASSWDS="$d/PASSWDS" && break; -done -export PASSWDS - # svn sometimes forgets about vi and wants me to use nano... #export EDITOR=vim