1
0
mirror of https://github.com/5im-0n/sshenc.sh.git synced 2025-08-02 11:20:05 +02:00

remove debug output

This commit is contained in:
s2
2020-02-29 17:22:09 +01:00
parent 817fc44da7
commit 0722e8d355

View File

@@ -61,9 +61,7 @@ if [[ "${#github_handle[@]}" -gt 0 ]]; then
mapfile -t handle_keys < "$temp_dir/$handle" mapfile -t handle_keys < "$temp_dir/$handle"
for key in "${!handle_keys[@]}" for key in "${!handle_keys[@]}"
do do
echo "${handle_keys[key]}"
printf "%s" "${handle_keys[key]}" > "$temp_dir/$handle.$key" printf "%s" "${handle_keys[key]}" > "$temp_dir/$handle.$key"
echo "$temp_dir/$handle.$key"
public_key+=("$temp_dir/$handle.$key") public_key+=("$temp_dir/$handle.$key")
done done
fi fi