summaryrefslogtreecommitdiffstats
path: root/meta/recipes-devtools/installer/adt-installer/adt_installer
diff options
context:
space:
mode:
Diffstat (limited to 'meta/recipes-devtools/installer/adt-installer/adt_installer')
-rwxr-xr-xmeta/recipes-devtools/installer/adt-installer/adt_installer6
1 files changed, 5 insertions, 1 deletions
diff --git a/meta/recipes-devtools/installer/adt-installer/adt_installer b/meta/recipes-devtools/installer/adt-installer/adt_installer
index 2d252b72ad..0be5a1d607 100755
--- a/meta/recipes-devtools/installer/adt-installer/adt_installer
+++ b/meta/recipes-devtools/installer/adt-installer/adt_installer
@@ -340,7 +340,11 @@ if [ "$INSTALL_FOLDER" = "" ]; then
340fi 340fi
341 341
342eval INSTALL_FOLDER=$INSTALL_FOLDER 342eval INSTALL_FOLDER=$INSTALL_FOLDER
343export INSTALL_FOLDER=$(readlink -m $INSTALL_FOLDER) 343if [ -d $INSTALL_FOLDER ]; then
344 export INSTALL_FOLDER=$(cd $INSTALL_FOLDER; pwd)
345else
346 export INSTALL_FOLDER=$(readlink -m $INSTALL_FOLDER)
347fi
344 348
345clear 349clear
346 350