From c61ca80558ced5833ad31c62809219d2ac296110 Mon Sep 17 00:00:00 2001 From: Alain Reguera Delgado Date: Jan 13 2014 00:54:26 +0000 Subject: Update tcar.conf file. - Previously, the value of TCAR_WORKDIR inside tcar.conf file was using a trailing slash. This made symbolic link construction to duplicate the slash character near the concatenation (e.g., /tmp/tcar-workplace//Webenv/Final). This update changes tcar.conf file to remove the trailing slash from TCAR_WORKDIR variable's value. Now, symbolic links are created without duplicating the slash character near the concatenation (e.g., /tmp/tcar-workplace/Webenv/Final). --- diff --git a/Scripts/tcar.conf b/Scripts/tcar.conf index a281334..0a92414 100644 --- a/Scripts/tcar.conf +++ b/Scripts/tcar.conf @@ -36,7 +36,7 @@ declare -x TCAR_SCRIPT_TEMPDIR=$(mktemp -p /tmp -d ${TCAR_SCRIPT_NAME}-XXXXXX) # user, using its personal configuration file (e.g., ~/.tcar.conf). # The value of this variable must point to a directory structure # created by the prepare command of tcar script. -declare -x TCAR_WORKDIR=/tmp/${TCAR_SCRIPT_NAME}-workplace/ +declare -x TCAR_WORKDIR=/tmp/${TCAR_SCRIPT_NAME}-workplace ###################################################################### # Internationalization