diff --git a/tools/link.sh b/tools/link.sh index ef41b33142..0b8ecfaffb 100755 --- a/tools/link.sh +++ b/tools/link.sh @@ -33,7 +33,7 @@ # POSSIBILITY OF SUCH DAMAGE. # ############################################################################ -set -x +#set -x src=$1 dest=$2 @@ -84,4 +84,4 @@ fi # Create the soft link ln -s "${src}" "${dest}" || \ - { echo "Failed to create link: $dest" ; exit 1 ; } \ No newline at end of file + { echo "Failed to create link: $dest" ; exit 1 ; } diff --git a/tools/winlink.sh b/tools/winlink.sh index 272fb96365..e94d26cc98 100755 --- a/tools/winlink.sh +++ b/tools/winlink.sh @@ -44,6 +44,7 @@ # as a replacement for the 'ln' command. This scrpt will simply copy the # directory into the expected positiion. # +#set -x src=$1 dest=$2 @@ -97,4 +98,5 @@ fi cp -a "${src}" "${dest}" || \ { echo "Failed to create link: $dest" ; rm -rf ${dest} ; exit 1 ; } touch "${dest}/.fakelnk" || \ - { echo "Failed to touch ${dest}/.fakelnk" ; rm -rf ${dest} ; exit 1 ; } \ No newline at end of file + { echo "Failed to touch ${dest}/.fakelnk" ; rm -rf ${dest} ; exit 1 ; } +