Bugs fixed

This commit is contained in:
Juan 2018-04-19 13:05:34 +02:00
parent 324b63a9ca
commit 834e00460d
2 changed files with 5 additions and 6 deletions

2
debian/changelog vendored
View File

@ -1,4 +1,4 @@
vn-repo (2.0.4) stable; urgency=low
vn-repo (2.0.5) stable; urgency=low
* Initial Release.

View File

@ -11,16 +11,15 @@ fi
packages=""
cut -d" " -f1 "$PWD/debian/files" |
while read debFile
while read -r line
do
packageName=$(echo $debFile | cut -d"_" -f1)
packageName=$(echo $line | cut -d"_" -f1)
packages="$packages $packageName"
done
done < "$PWD/debian/files"
if [ -z "$packages" ]
then
echo "No packages found to install"
echo "No packages found to install."
exit 1
fi