Bugs fixed
This commit is contained in:
parent
324b63a9ca
commit
834e00460d
|
@ -1,4 +1,4 @@
|
|||
vn-repo (2.0.4) stable; urgency=low
|
||||
vn-repo (2.0.5) stable; urgency=low
|
||||
|
||||
* Initial Release.
|
||||
|
||||
|
|
|
@ -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
|
||||
|
||||
|
|
Reference in New Issue