From df2a5fa61b1b4dbf2703c0c683ded08be34936e3 Mon Sep 17 00:00:00 2001
From: Shaun Wang <spxwang@gmail.com>
Date: Thu, 15 Jul 2021 10:49:49 +1200
Subject: [PATCH] Remove module excludes in run script. (#551)

---
 scripts/run.sh | 4 ----
 1 file changed, 4 deletions(-)

diff --git a/scripts/run.sh b/scripts/run.sh
index fd8cc73..1e5a5b3 100755
--- a/scripts/run.sh
+++ b/scripts/run.sh
@@ -8,10 +8,6 @@ shift
 set -x
 
 for file in **/Cargo.toml; do
-	if [ "$file" == "xtokens/Cargo.toml" ] || [ "$file" == "xcm-support/Cargo.toml" ] || [ "$file" == "unknown-tokens/Cargo.toml" ]
-		then
-			continue
-	fi
 	cargo $COMMAND --manifest-path "$file" $@;
 done
 
-- 
GitLab