-
-
Notifications
You must be signed in to change notification settings - Fork 93
Closed
Labels
enhancementNew feature or requestNew feature or request
Description
Description
Hi there!
Today scripts are organized in src
dir in a flat way :
src/
├── bashly.yml
├── completions_command.sh
├── concerto_config_dump_command.sh
├── concerto_config_print_command.sh
├── concerto_notify_release_command.sh
├── concerto_notify_sentry_command.sh
├── concerto_restart_command.sh
├── concerto_setup_command.sh
├── concerto_update_french_logo_command.sh
├── concerto_update_staging_command.sh
├── docker_config_command.sh
├── docker_down_command.sh
├── docker_enter_command.sh
├── docker_exec_command.sh
├── docker_images_command.sh
├── docker_logs_command.sh
├── docker_prune_images_command.sh
├── docker_ps_command.sh
├── docker_pull_command.sh
├── docker_restart_command.sh
├── docker_start_command.sh
├── docker_stop_command.sh
├── docker_top_command.sh
├── docker_up_command.sh
├── get_config_concerto_version_command.sh
├── get_config_date_command.sh
├── get_config_debian_version_command.sh
├── get_config_env_command.sh
├── get_config_local_command.sh
├── get_config_service_version_command.sh
├── lib
│ ├── colors.sh
It would be great to have an option to organize scripts in subdirectories :
src/
├── bashly.yml
├── completions_command.sh
├── concerto
│ └── config_dump_command.sh
│ └── config_print_command.sh
│ └── notify_release_command.sh
│ └── notify_sentry_command.sh
│ └── restart_command.sh
│ └── setup_command.sh
│ └── update_french_logo_command.sh
│ └── update_staging_command.sh
├── docker
│ └── start_command.sh
│ └── config_command.sh
│ └── down_command.sh
│ └── enter_command.sh
│ └── exec_command.sh
│ └── images_command.sh
│ └── logs_command.sh
│ └── prune_images_command.sh
│ └── ps_command.sh
│ └── pull_command.sh
│ └── restart_command.sh
│ └── start_command.sh
│ └── stop_command.sh
│ └── top_command.sh
│ └── up_command.sh
Thank you!
Metadata
Metadata
Assignees
Labels
enhancementNew feature or requestNew feature or request