mirror of
https://github.com/zama-ai/concrete.git
synced 2026-01-14 15:27:58 -05:00
9 lines
209 B
Bash
Executable File
9 lines
209 B
Bash
Executable File
#!/bin/sh
|
|
|
|
# This file tests that the example is working
|
|
|
|
shell_blocks=$(sed -n '/^```sh/,/^```/ p' < README.md | sed '/^```sh/d' | sed '/^```/d')
|
|
|
|
set -e
|
|
output=$(eval "$shell_blocks" 2>&1) || echo "$output"
|