From 98ff5bd25db9d244fdc85ee7c64fba8b7a276ca7 Mon Sep 17 00:00:00 2001 From: Caspar van Leeuwen Date: Wed, 20 Aug 2025 17:54:11 +0200 Subject: [PATCH] Exclude EasyStacks dir from software-layer-scripts from being symlinked --- bot/build.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bot/build.sh b/bot/build.sh index d72ecbdd0c..2884db8de4 100755 --- a/bot/build.sh +++ b/bot/build.sh @@ -8,7 +8,7 @@ git clone https://github.com/EESSI/software-layer-scripts # symlink everything, except for: # - common files like LICENSE and README.md # - 'bot' subdirectory, there we need to be a bit more careful (see below) -for file in $(ls software-layer-scripts | egrep -v 'LICENSE|README.md|^bot'); do +for file in $(ls software-layer-scripts | egrep -v 'easystacks|LICENSE|README.md|^bot'); do ln -s software-layer-scripts/${file} done