[sysadmin/release-tools] /: Remove old stale comment
Albert Astals Cid <[email protected]>
| Newsgroups | gmane.comp.kde.cvs |
|---|---|
| Message-ID | <[email protected]> |
Git commit 94113b2e42af906a68a3ec1e1ef94e7bef2b0c3b by Albert Astals Cid.
Committed on 02/08/2026 at 22:08.
Pushed by aacid into branch 'master'.
Remove old stale comment
It says "figure how to make it work" and we have been using this for
years and years :D
M +1 -7 tag_all.sh
https://invent.kde.org/sysadmin/release-tools/-/commit/94113b2e42af906a68a3ec1e1ef94e7bef2b0c3b
diff --git a/tag_all.sh b/tag_all.sh
index 50bee11..04404ae 100755
--- a/tag_all.sh
+++ b/tag_all.sh
@@ -4,8 +4,6 @@ unset CDPATH
here=$PWD
-# We look for the checkouts in subdirs (frameworks/, kdesupport/) of $srcdir
-# TODO: adapt this for KDE SC releases
srcdir=/d/kde/src/5
if [ ! -d $srcdir ]; then
@@ -22,11 +20,7 @@ cat $here/modules.git | while read repoid branch; do
if [ ! -f $versionfile ]; then echo "$versionfile not found"; exit 1; fi
b=`sed '2q;d' $versionfile`
echo $b
- if [ -d frameworks/$repoid ]; then
- cd frameworks/$repoid
- elif [ -d kdesupport/$repoid ]; then
- cd kdesupport/$repoid || exit 2
- elif [ -d $repoid ]; then
+ if [ -d $repoid ]; then
cd $repoid || exit 2
else
echo "NOT FOUND: $repoid"