Changeset 168
- Timestamp:
- 07/19/2007 20:54:18 (5 years ago)
- Location:
- trunk/confman
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/confman/confman
r167 r168 12 12 # $Id$ 13 13 14 . /usr/local/rescomp/lib/confmancommon.sh 14 # Try loading a development library first 15 if [ -r ./confmancommon.sh ] ; then 16 echo "Loading development library from current working directory." >&2 17 . ./confmancommon.sh 18 elif [ -r /usr/local/rescomp/lib/confmancommon.sh ] ; then 19 . /usr/local/rescomp/lib/confmancommon.sh 20 else 21 echo "Can't find confmancommon.sh. Exiting." >&2 22 fi 15 23 16 24 # Set a default editor -
trunk/confman/confsync.sh
r167 r168 12 12 ## 13 13 14 . /usr/local/rescomp/lib/confmancommon.sh 14 # Try loading a development library first 15 if [ -r ./confmancommon.sh ] ; then 16 echo "Loading development library from current working directory." >&2 17 . ./confmancommon.sh 18 elif [ -r /usr/local/rescomp/lib/confmancommon.sh ] ; then 19 . /usr/local/rescomp/lib/confmancommon.sh 20 else 21 echo "Can't find confmancommon.sh. Exiting." >&2 22 fi 15 23 16 24 # If we're in debug mode, we should log stderr messages to the logger -
trunk/confman/export.sh
r150 r168 14 14 ## 15 15 16 . /usr/local/rescomp/lib/confmancommon.sh 16 # Try loading a development library first 17 if [ -r ./confmancommon.sh ] ; then 18 echo "Loading development library from current working directory." >&2 19 . ./confmancommon.sh 20 elif [ -r /usr/local/rescomp/lib/confmancommon.sh ] ; then 21 . /usr/local/rescomp/lib/confmancommon.sh 22 else 23 echo "Can't find confmancommon.sh. Exiting." >&2 24 fi 17 25 18 26 # If we're in debug mode, we should log stderr messages to the logger
Note: See TracChangeset
for help on using the changeset viewer.
