From a1eda6e8e95fe7c36fc463edd5f3aaef8b3ed453 Mon Sep 17 00:00:00 2001 From: Edileuton Henrique de Oliveira <eho09@c3sl.ufpr.br> Date: Thu, 27 Feb 2014 10:19:50 -0300 Subject: [PATCH] windows-installer: Add script that generate the Windows installer package Signed-off-by: Edileuton Henrique de Oliveira <eho09@c3sl.ufpr.br> --- windows-installer/build-windows-installer.sh | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/windows-installer/build-windows-installer.sh b/windows-installer/build-windows-installer.sh index ee5cd58..5b7c51a 100755 --- a/windows-installer/build-windows-installer.sh +++ b/windows-installer/build-windows-installer.sh @@ -56,10 +56,10 @@ printf "Creating conf files...\n" # Create the proxy and inep files with all necessary proxy information, and its md5 echo "${INEP}" > "/tmp/${INEP}/inep" -echo "phost=$PHOST" > "/tmp/${INEP}/proxy" -echo "pport=$PPORT" >> "/tmp/${INEP}/proxy" -echo "puid=$PUID" >> "/tmp/${INEP}/proxy" -echo "ppasswd=$PPASSWD" >> "/tmp/${INEP}/proxy" +echo "$PHOST" > "/tmp/${INEP}/proxy" +echo "$PPORT" >> "/tmp/${INEP}/proxy" +echo "$PUID" >> "/tmp/${INEP}/proxy" +echo "$PPASSWD" >> "/tmp/${INEP}/proxy" cd "/tmp/${INEP}" -- GitLab