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. * Initial Release.

View File

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