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_installer11
1 files changed, 11 insertions, 0 deletions
diff --git a/meta/recipes-devtools/installer/adt-installer/adt_installer b/meta/recipes-devtools/installer/adt-installer/adt_installer
index 1a53eb9c54..2d252b72ad 100755
--- a/meta/recipes-devtools/installer/adt-installer/adt_installer
+++ b/meta/recipes-devtools/installer/adt-installer/adt_installer
@@ -332,6 +332,17 @@ if [ -f "$YOCTOADT_INSTALL_LOG_FILE" ]; then
332 rm $YOCTOADT_INSTALL_LOG_FILE 332 rm $YOCTOADT_INSTALL_LOG_FILE
333fi 333fi
334 334
335echo -n "Please enter the install location (default: $DEFAULT_INSTALL_FOLDER): "
336read INSTALL_FOLDER
337
338if [ "$INSTALL_FOLDER" = "" ]; then
339 INSTALL_FOLDER=$DEFAULT_INSTALL_FOLDER
340fi
341
342eval INSTALL_FOLDER=$INSTALL_FOLDER
343export INSTALL_FOLDER=$(readlink -m $INSTALL_FOLDER)
344
345clear
335 346
336usage 347usage
337 348