From f8a2e66e0589884c16690ca36396708624d0b9a6 Mon Sep 17 00:00:00 2001 From: Matthias Kruk Date: Mon, 14 Feb 2022 14:09:39 +0900 Subject: [PATCH] include: Move files to foundry directory The toolbox modules that come with foundry are losely placed in the include directory, which goes against toolbox conventions. The modules should be placed in a subdirectory of include. This commit moves the foundry modules into the foundry subdirectory. --- include/{ => foundry}/context.sh | 0 include/{ => foundry}/msg.sh | 0 include/{ => foundry}/msg/artifact.sh | 0 include/{ => foundry}/msg/build.sh | 0 include/{ => foundry}/msg/commit.sh | 0 include/{ => foundry}/msg/dist.sh | 0 include/{ => foundry}/msg/merge.sh | 0 include/{ => foundry}/msg/sign.sh | 0 include/{ => foundry}/msg/test.sh | 0 9 files changed, 0 insertions(+), 0 deletions(-) rename include/{ => foundry}/context.sh (100%) rename include/{ => foundry}/msg.sh (100%) rename include/{ => foundry}/msg/artifact.sh (100%) rename include/{ => foundry}/msg/build.sh (100%) rename include/{ => foundry}/msg/commit.sh (100%) rename include/{ => foundry}/msg/dist.sh (100%) rename include/{ => foundry}/msg/merge.sh (100%) rename include/{ => foundry}/msg/sign.sh (100%) rename include/{ => foundry}/msg/test.sh (100%) diff --git a/include/context.sh b/include/foundry/context.sh similarity index 100% rename from include/context.sh rename to include/foundry/context.sh diff --git a/include/msg.sh b/include/foundry/msg.sh similarity index 100% rename from include/msg.sh rename to include/foundry/msg.sh diff --git a/include/msg/artifact.sh b/include/foundry/msg/artifact.sh similarity index 100% rename from include/msg/artifact.sh rename to include/foundry/msg/artifact.sh diff --git a/include/msg/build.sh b/include/foundry/msg/build.sh similarity index 100% rename from include/msg/build.sh rename to include/foundry/msg/build.sh diff --git a/include/msg/commit.sh b/include/foundry/msg/commit.sh similarity index 100% rename from include/msg/commit.sh rename to include/foundry/msg/commit.sh diff --git a/include/msg/dist.sh b/include/foundry/msg/dist.sh similarity index 100% rename from include/msg/dist.sh rename to include/foundry/msg/dist.sh diff --git a/include/msg/merge.sh b/include/foundry/msg/merge.sh similarity index 100% rename from include/msg/merge.sh rename to include/foundry/msg/merge.sh diff --git a/include/msg/sign.sh b/include/foundry/msg/sign.sh similarity index 100% rename from include/msg/sign.sh rename to include/foundry/msg/sign.sh diff --git a/include/msg/test.sh b/include/foundry/msg/test.sh similarity index 100% rename from include/msg/test.sh rename to include/foundry/msg/test.sh -- 2.47.3