Browse Source

Improved bin/sde-list-files to handle package and target names directly

misl/sde-wrapper
Alejandro Mery 17 years ago
parent
commit
893e9bbedd
1 changed files with 6 additions and 0 deletions
  1. +6
    -0
      bin/sde-list-files

+ 6
- 0
bin/sde-list-files

@ -92,6 +92,12 @@ for x; do
elif [ -e "$SDEROOT/$x" ]; then
# $SDEROOT relative
y="$SDEROOT/$x"
elif [ -e "$SDEROOT/package"/*/"$x" ]; then
# package name
y=$( echo "$SDEROOT/package"/*/"$x" )
elif [ -e "$SDEROOT/target/$x" ]; then
# package name
y="$SDEROOT/target/$x"
fi
# canonicalize

Loading…
Cancel
Save