Skip to content
This repository has been archived by the owner on Sep 2, 2022. It is now read-only.

Commit

Permalink
Check if file or not
Browse files Browse the repository at this point in the history
Signed-off-by: Sunghoon Kang <[email protected]>
  • Loading branch information
devholic committed May 12, 2021
1 parent 030e7a8 commit 429c19a
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions controllers/flinkcluster_config_init_script.go
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,10 @@ function init_config() {
cp -R "${config_dir}/." "${output_dir}"
for file in "${config_secret_dir}"/*; do
if [[ ! -f "${file}" ]]; then
continue
fi
local key
local value
key=$(basename "${file}")
Expand Down

0 comments on commit 429c19a

Please sign in to comment.