Browse Source

contrib/lsupgrade.sh: fix path output

Matthias Schiffer 9 years ago
parent
commit
472087a7b1
1 changed files with 2 additions and 2 deletions
  1. 2 2
      contrib/lsupgrade.sh

+ 2 - 2
contrib/lsupgrade.sh

@@ -26,7 +26,7 @@ fi
 
 pushd "$(dirname "$0")/.." >/dev/null
 
-find package packages -name Makefile | while read makefile; do
+find ./package packages -name Makefile | while read makefile; do
 	dir="$(dirname "$makefile")"
 
 	pushd "$dir" >/dev/null
@@ -36,7 +36,7 @@ find package packages -name Makefile | while read makefile; do
 	package="$(basename "$dir")"
 
 	for file in "${SUFFIX}"/*; do
-		echo "${GREEN}$(basename "${file}")${RESET}" "(${BLUE}${repo}${RESET}/${dirname}/${RED}${package}${RESET}/${SUFFIX})"
+		echo "${GREEN}$(basename "${file}")${RESET}" "(${BLUE}${repo}${RESET}/${dirname}${dirname:+/}${RED}${package}${RESET}/${SUFFIX})"
 	done
 	popd >/dev/null
 done | sort