Fix: incorrect install path of ts-remote-test

The ts-remote-test executable is not installed under the proper
environment specific directory. This small change fixes this.

Change-Id: If9a05163c422b884e6f1228c9d6e40e0367be06e
Signed-off-by: Gyorgy Szing <Gyorgy.Szing@arm.com>
diff --git a/deployments/ts-remote-test/ts-remote-test.cmake b/deployments/ts-remote-test/ts-remote-test.cmake
index c310445..0bdeb9b 100644
--- a/deployments/ts-remote-test/ts-remote-test.cmake
+++ b/deployments/ts-remote-test/ts-remote-test.cmake
@@ -49,4 +49,4 @@
 if (CMAKE_INSTALL_PREFIX_INITIALIZED_TO_DEFAULT)
 	set(CMAKE_INSTALL_PREFIX ${CMAKE_BINARY_DIR}/install CACHE PATH "location to install build output to." FORCE)
 endif()
-install(TARGETS ts-remote-test RUNTIME DESTINATION bin)
+install(TARGETS ts-remote-test RUNTIME DESTINATION ${TS_ENV}/bin)