Changeset 2070
- Timestamp:
- Jan 3, 2011 11:03:46 PM (10 years ago)
- Location:
- stable/0.7
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
stable/0.7
-
stable/0.7/commit_new_release
r1950 r2070 45 45 46 46 # Process the parameters. A parameter without an opening `-' is assumed to be 47 # the spec for the directory to be committed. 47 # the spec for the directory to be committed. (Strip any trailing '/'. Some 48 # people add it, but the script doesn't expect it.) 48 49 49 50 while test $# -gt 0 && test $printHelp = 0 ; do … … 58 59 printHelp=1 59 60 ;; 60 *) dirToCommit= "$1"61 *) dirToCommit=`echo $1 | sed -e 's,/$,,'` 61 62 ;; 62 63 esac -
stable/0.7/commit_new_stable
r1950 r2070 43 43 44 44 # Process the parameters. A parameter without an opening `-' is assumed to be 45 # the spec for the directory to be committed. 45 # the spec for the directory to be committed. (Strip any trailing '/'. Some 46 # people add it, but the script doesn't expect it.) 46 47 47 48 while test $# -gt 0 && test $printHelp = 0 ; do … … 56 57 printHelp=1 57 58 ;; 58 *) dirToCommit= "$1"59 *) dirToCommit=`echo $1 | sed -e 's,/$,,'` 59 60 ;; 60 61 esac -
stable/0.7/compile_f2c
- Property svn:mergeinfo changed (with no actual effect on merging)
Note: See TracChangeset
for help on using the changeset viewer.