Jelajahi Sumber

fix spacing

Christian Winther 1 tahun lalu
induk
melakukan
e2821adcca

+ 2 - 2
.editorconfig

@@ -20,8 +20,8 @@ indent_size = 4
 shell_variant      = bash  # like -ln=bash
 binary_next_line   = true  # like -bn
 switch_case_indent = true  # like -ci
-space_redirects    = true # like -sr
-keep_padding       = false  # like -kp
+space_redirects    = false # like -sr
+keep_padding       = false # like -kp
 function_next_line = true  # like -fn
 never_split        = true  # like -ns
 simplify           = true

+ 1 - 1
docker/shared/root/docker/entrypoint.d/01-permissions.sh

@@ -16,7 +16,7 @@ run-as-current-user chown --verbose "${RUNTIME_UID}:${RUNTIME_GID}" "./storage"
 : "${DOCKER_APP_ENSURE_OWNERSHIP_PATHS:=""}"
 
 declare -a ensure_ownership_paths=()
-IFS=' ' read -ar ensure_ownership_paths <<< "${DOCKER_APP_ENSURE_OWNERSHIP_PATHS}"
+IFS=' ' read -ar ensure_ownership_paths <<<"${DOCKER_APP_ENSURE_OWNERSHIP_PATHS}"
 
 if [[ ${#ensure_ownership_paths[@]} == 0 ]]; then
     log-info "No paths has been configured for ownership fixes via [\$DOCKER_APP_ENSURE_OWNERSHIP_PATHS]."

+ 1 - 1
docker/shared/root/docker/entrypoint.d/05-templating.sh

@@ -51,7 +51,7 @@ find "${ENTRYPOINT_TEMPLATE_DIR}" -follow -type f -print | while read -r templat
 
     # Render the template
     log-info "Running [gomplate] on [${template_file}] --> [${output_file_path}]"
-    gomplate < "${template_file}" > "${output_file_path}"
+    gomplate <"${template_file}" >"${output_file_path}"
 
     # Show the diff from the envsubst command
     if is-true "${ENTRYPOINT_SHOW_TEMPLATE_DIFF}"; then