git @ Cat's Eye Technologies shelf / dbe21b0
Make shelf_fanout able to process multiple project directories. Chris Pressey 7 years ago
2 changed file(s) with 14 addition(s) and 13 deletion(s). Raw diff Collapse all Expand all
9393 there is no such branch configured in *DEST*, an error occurs. *DEST* should
9494 be a directory on the `SHELF_PATH`.
9595
96 * `shelf_fanout` *DIR*
96 * `shelf_fanout` *DIR* [*DIR* ...]
9797
9898 Executes a `shelf_push` to every directory on the `SHELF_PATH` that contains
9999 a project directory that has the same basename as *DIR*.
309309 shelf_fanout() {
310310 path=`echo "$SHELF_PATH" | sed -e 's/:/ /g'`
311311
312 project=$1
313 dir=`_shelf_abspath_dir "$dir"`
314 base=`basename "$dir"`
315
316 for shelf in $path; do
317 if [ "$dir" = "$shelf/$base" ]; then
318 continue
319 fi
320 if [ -d "$shelf/$base" ]; then
321 echo "--> $shelf/$base"
322 _shelf_push $dir "$shelf/$base"
323 fi
312 for dir in $*; do
313 dir=`_shelf_abspath_dir "$dir"`
314 base=`basename "$dir"`
315
316 for shelf in $path; do
317 if [ "$dir" = "$shelf/$base" ]; then
318 continue
319 fi
320 if [ -d "$shelf/$base" ]; then
321 echo "--> $shelf/$base"
322 _shelf_push $dir "$shelf/$base"
323 fi
324 done
324325 done
325326 }
326327