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.
|
* Initial Release.
|
||||||
|
|
||||||
|
|
|
@ -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
|
||||||
|
|
||||||
|
|
Reference in New Issue