Make shelf_fanout able to process multiple project directories.
Chris Pressey
7 years ago
93 | 93 |
there is no such branch configured in *DEST*, an error occurs. *DEST* should
|
94 | 94 |
be a directory on the `SHELF_PATH`.
|
95 | 95 |
|
96 | |
* `shelf_fanout` *DIR*
|
|
96 |
* `shelf_fanout` *DIR* [*DIR* ...]
|
97 | 97 |
|
98 | 98 |
Executes a `shelf_push` to every directory on the `SHELF_PATH` that contains
|
99 | 99 |
a project directory that has the same basename as *DIR*.
|
309 | 309 |
shelf_fanout() {
|
310 | 310 |
path=`echo "$SHELF_PATH" | sed -e 's/:/ /g'`
|
311 | 311 |
|
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
|
324 | 325 |
done
|
325 | 326 |
}
|
326 | 327 |
|