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

View File

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

View File

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