Logging improved

This commit is contained in:
Juan 2018-04-19 13:50:11 +02:00
parent c4691f0473
commit 27b973657c
3 changed files with 7 additions and 7 deletions

2
debian/changelog vendored
View File

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

View File

@ -11,28 +11,28 @@ buildDir="$srcDir/.."
repreproDir="/var/cache/reprepro"
codename="stable"
echo "++++++++++++++ Building source code."
echo -e -e "\n#Building source code."
echo " * Date: $(date)"
echo " * Directory: $buildDir"
if [ -f "$srcDir/package.json" ]
then
echo "++++++++++++++ Installing Node dependencies."
echo -e "\n#Installing Node dependencies."
(cd "$srcDir" && npm --silent install)
fi
if [ -f "$srcDir/debian/changelog" ]
then
echo "++++++++++++++ Cleaning last build."
echo -e "\n#Cleaning last build."
rm -f $buildDir/*.deb
rm -f $buildDir/*.changes
rm -f $buildDir/*.build
(cd "$srcDir" && debian/rules clean)
echo "++++++++++++++ Building Debian packages."
echo -e "\n#Building Debian packages."
(cd "$srcDir" && debuild -uc -us -b)
echo "++++++++++++++ Adding packages to repository."
echo -e "\n#Adding packages to repository."
cut -d" " -f1 "$srcDir/debian/files" |
while read debFile

View File

@ -25,7 +25,7 @@ fi
# FIXME: Packages are not upgraded when config files are changed
echo "++++++++++++++ Upgrading servers."
echo -e "\n#Upgrading servers."
for host in $hosts
do