diff options
author | Masaya Tojo <masaya@tojo.tokyo> | 2021-07-31 23:16:45 +0900 |
---|---|---|
committer | Masaya Tojo <masaya@tojo.tokyo> | 2021-07-31 23:20:39 +0900 |
commit | aa6989bdf80571632ce50f37465301f950df1b65 (patch) | |
tree | a8e513f0a5caa820a882fa7ec9b3e34acec9676e | |
parent | d7c8c4a5788c8dcf57636b315b330219ae4ff4af (diff) |
Fix to absolute path.
-rwxr-xr-x | jobs/acl2-theorems.run | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/jobs/acl2-theorems.run b/jobs/acl2-theorems.run index faec32c..c002d11 100755 --- a/jobs/acl2-theorems.run +++ b/jobs/acl2-theorems.run @@ -2,5 +2,5 @@ set -euo pipefail for path in $(find -type f -name '*.lisp'); do - laminarc start acl2-verify path="$path" + laminarc start acl2-verify path="$(pwd)/$path" done |