Skip to content

Commit

Permalink
style: split the provider list by newline
Browse files Browse the repository at this point in the history
  • Loading branch information
mingrammer authored and ajmaradiaga committed Nov 8, 2023
1 parent 17e8a90 commit d974ecf
Show file tree
Hide file tree
Showing 2 changed files with 36 additions and 3 deletions.
19 changes: 18 additions & 1 deletion autogen.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,24 @@
app_root_dir="diagrams"

# NOTE: azure icon set is not latest version
providers=("onprem" "aws" "azure" "digitalocean" "gcp" "ibm" "firebase" "k8s" "alibabacloud" "oci" "programming" "saas" "elastic" "generic" "openstack" "outscale" "sap" )
providers=(
"onprem"
"aws"
"azure"
"digitalocean"
"gcp"
"ibm"
"firebase"
"k8s"
"alibabacloud"
"oci"
"programming"
"saas"
"elastic"
"generic"
"openstack"
"outscale"
)

if ! [ -x "$(command -v round)" ]; then
echo 'round is not installed'
Expand Down
20 changes: 18 additions & 2 deletions config.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,24 @@
DIR_TEMPLATE = "templates"

PROVIDERS = (
"base", "onprem", "aws", "azure", "digitalocean", "gcp", "ibm", "firebase", "k8s", "alibabacloud", "oci",
"programming", "saas", "elastic", "generic", "openstack", "outscale", "sap")
"base",
"onprem"
"aws",
"azure",
"digitalocean",
"gcp",
"ibm",
"firebase",
"k8s",
"alibabacloud",
"oci",
"programming",
"saas",
"elastic",
"generic",
"openstack",
"outscale",
)

#########################
# Resource Processing #
Expand Down

0 comments on commit d974ecf

Please sign in to comment.