From d1d7e2342e78279ff2c074d5b3c1e82dcadacc19 Mon Sep 17 00:00:00 2001 From: Mark Spanbroek Date: Tue, 19 Jun 2018 21:17:20 +0200 Subject: [PATCH] Fix nimble warning Nimble warns about .nim files that are outside of the 'nimbus' directory when they are not mentioned in the skipDirs. --- nimbus.nimble | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nimbus.nimble b/nimbus.nimble index ccfe54dae..82cd6db34 100644 --- a/nimbus.nimble +++ b/nimbus.nimble @@ -5,7 +5,7 @@ version = "0.1.0" author = "Status Research & Development GmbH" description = "An Ethereum 2.0 Sharding Client for Resource-Restricted Devices" license = "Apache License 2.0" -skipDirs = @["tests"] +skipDirs = @["tests", "examples"] requires "nim >= 0.18.1", "nimcrypto",