view examples/build_examples.sh @ 553:bd8c4d4688d5

use conforming format for snappy compression This finally enables reading/writing compressed leveldbs written by the original implementation. Before this, the incompatible compression format prevented this. Fixes #17
author Lewin Bormann <lbo@spheniscida.de>
date Thu, 30 Jun 2022 21:09:05 -0700
parents a32463dc4cb2
children
line wrap: on
line source

#!/bin/bash

set -e

for D in `find examples/ -maxdepth 1 -mindepth 1 -type d`;
do
    pushd ${D}
    cargo build
    popd
done