diff options
author | Masaya Tojo <masaya@tojo.tokyo> | 2021-07-31 23:11:30 +0900 |
---|---|---|
committer | Masaya Tojo <masaya@tojo.tokyo> | 2021-07-31 23:11:30 +0900 |
commit | 59d6422eabff4070b6049c42e55bcb687969001e (patch) | |
tree | 16d5b7ea99ffd48a70efc16a2b3a9a454d066ff1 | |
parent | 737a6cc793b8c781a7be09b4436cb66738676146 (diff) |
Use pipefail.
-rwxr-xr-x | jobs/acl2-theorems.run | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/jobs/acl2-theorems.run b/jobs/acl2-theorems.run index e934efd..faec32c 100755 --- a/jobs/acl2-theorems.run +++ b/jobs/acl2-theorems.run @@ -1,4 +1,5 @@ -#!/bin/sh +#!/usr/bin/env bash +set -euo pipefail for path in $(find -type f -name '*.lisp'); do laminarc start acl2-verify path="$path" |