From 834e00460d3901256ee75d6e24fcb3a2ead453aa Mon Sep 17 00:00:00 2001 From: Juan Date: Thu, 19 Apr 2018 13:05:34 +0200 Subject: [PATCH] Bugs fixed --- debian/changelog | 2 +- vn-deploy | 9 ++++----- 2 files changed, 5 insertions(+), 6 deletions(-) diff --git a/debian/changelog b/debian/changelog index 9197312..a97f92c 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,4 +1,4 @@ -vn-repo (2.0.4) stable; urgency=low +vn-repo (2.0.5) stable; urgency=low * Initial Release. diff --git a/vn-deploy b/vn-deploy index 96b3687..ea19bcf 100755 --- a/vn-deploy +++ b/vn-deploy @@ -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