Remove ensure_symlink_exists when file already exists

This commit is contained in:
Reza Behzadan 2024-02-06 08:40:05 +03:30
parent 361c9759fa
commit 61025d0994

View File

@ -24,7 +24,7 @@ DEST="${DEST_DIR}/GeoLite2-City-${DATE//-/}.mmdb"
check_if_file_is_already_downloaded() {
if [ -e "$DEST" ]; then
echo "File is already on the local filesystem"
ensure_symlink_exists
# ensure_symlink_exists
exit 0
fi
}