Skip to content

Commit

Permalink
don't check whether easyconfigs in __archive__/r/RCS from index are i…
Browse files Browse the repository at this point in the history
…ncluded in source tarball
  • Loading branch information
boegel committed Dec 30, 2023
1 parent 7690c42 commit 0851a31
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/create_source_tarball.sh
Original file line number Diff line number Diff line change
Expand Up @@ -240,7 +240,7 @@ if [[ "$repo" == "easybuild-easyconfigs" ]]; then
echo -n ">> checking whether all files in index actually exist in unpacked source tarball ... "
file_cnt=`cat $index_in_sdist | grep -v '^#' | wc -l | sed 's/ //g'`
idx=1
for file in `cat $index_in_sdist | grep -v '^#'`; do
for file in `cat $index_in_sdist | grep -v '^#' | grep -v '__archive__/r/RCS/'`; do
echo -e -n "\r>> checking whether all files in index actually exist in unpacked source tarball ... $idx/$file_cnt"
if [ ! -f $unpacked_sdist/easybuild/easyconfigs/$file ]; then
error "File $file listed in index, but not found in $cwd!"
Expand Down

0 comments on commit 0851a31

Please sign in to comment.