From b036aadb3a901e0df36ec41a2f0d8efa306f305a Mon Sep 17 00:00:00 2001 From: web3-developer <51288821+web3-developer@users.noreply.github.com> Date: Wed, 26 Jun 2024 21:39:21 +0800 Subject: [PATCH] Try fix nph not in path after install in CI. --- rocksdb.nimble | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/rocksdb.nimble b/rocksdb.nimble index 4b52ba5..ab7f1e8 100644 --- a/rocksdb.nimble +++ b/rocksdb.nimble @@ -14,8 +14,7 @@ requires "nim >= 1.6", "results", "tempfile", "unittest2" task format, "Format nim code using nph": # Using the latest nph commit for now because the latest tagged version # doesn't work with the latest nim 2 version - exec "nimble install nph@#head" - exec "nph ." + exec "nimble install nph@#head; nph ." task clean, "Remove temporary files": exec "rm -rf build"