Skip to content

Commit

Permalink
fix: ensure data_volume isn't surrounded by quotes
Browse files Browse the repository at this point in the history
Signed-off-by: Alexandre Vallarino <[email protected]>
  • Loading branch information
Alexandre Vallarino committed Jan 31, 2025
1 parent 28c3a0e commit 22bb9a5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion make/prepare
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ else
fi
fi

data_path=$(grep '^[^#]*data_volume:' $input_dir/harbor.yml | awk '{print $NF}')
data_path=$(grep '^[^#]*data_volume:' $input_dir/harbor.yml | awk '{print $NF}' | sed 's/"//g')

# If previous secretkeys exist, move it to new location
previous_secretkey_path=/data/secretkey
Expand Down

0 comments on commit 22bb9a5

Please sign in to comment.