Exemplo n.º 1
0
def prompt_for_install_directories():
  install_dir_path = general.prompt_for_text('Enter the application install directory path: ').strip()
  app_symlink_path = general.prompt_for_text('Enter the application symlink path:           ').strip()
  return (install_dir_path, app_symlink_path)
Exemplo n.º 2
0
def prompt_for_configure_directories():
  current_value_install_dir = \
    general.prompt_for_text('Please enter the directory location of the currently installed app to read from: ').strip()
  output_value_install_dir = \
    general.prompt_for_text('Please enter the directory location of the currently installed app to write to:  ').strip()
  return (current_value_install_dir, output_value_install_dir)