Ein für Shopware 6 vorbereitet Systemmanagment.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

22 lines
933 B

1 year ago
  1. #!/bin/bash
  2. ### DO NOT EDIT THIS FILE
  3. source "$(cd "$(dirname "${BASH_SOURCE[0]}")" &> /dev/null && pwd)/includes"
  4. help="$(getParameter "--help" false "$*")"
  5. if [ "$help" == true ] || [ "$1" == "" ]
  6. then
  7. usage
  8. exit
  9. fi
  10. project_manager_dir="$(cd "$(dirname "${BASH_SOURCE[0]}")/../../" &> /dev/null && pwd)"
  11. config_file="$(cd "$(dirname "${BASH_SOURCE[0]}")/../.." &> /dev/null && pwd)/etc/config"
  12. if [ -f "$config" ]; then source "$config_file"; fi
  13. projects_file="$(cd "$(dirname "${BASH_SOURCE[0]}")/../.." &> /dev/null && pwd)/etc/projects"
  14. if [ -f "$projects_file" ]; then source "$projects_file"; fi
  15. customers_file="$(cd "$(dirname "${BASH_SOURCE[0]}")/../.." &> /dev/null && pwd)/etc/customers"
  16. if [ -f "$customers_file" ]; then source "$customers_file"; fi
  17. shortnames_file="$(cd "$(dirname "${BASH_SOURCE[0]}")/../.." &> /dev/null && pwd)/etc/shortnames"
  18. if [ -f "$shortnames_file" ]; then source "$shortnames_file"; fi