diff options
-rwxr-xr-x | recert | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -131,7 +131,7 @@ fi # Setup 4: get hashes current_hash="" if [ -f "$cert" ]; then - current_hash=$(md5sum "$lets_cert" | cut -f 1 -d " ") + current_hash=$(md5sum "$cert" | cut -f 1 -d " ") else current_hash="FORCE" fi @@ -161,3 +161,4 @@ fi rm "$tmp" exit "$status" + |