Am 21.08.16 um 13:59 schrieb Allan Odgaard:

This code will echo the “git clone” instructions required to clone all bundles in the index (pipe it to sh when you ensure it works):
pp ~/Library/Application\ Support/TextMate/Managed/Cache/org.textmate.updates.default \
|grep -o 'https://api.textmate.org/.*\.tbz' \
|while read url; do curl -s $url \
|tar -jxO info.plist|pp \
|sed -n 's/.*url = "\(.*git.*\)";/\1/p' \
|( read repos; echo git clone $repos ); done

Here pp is the property list tool found in the Property List bundle (under Support/bin).

Thanks, worked like a charm. Let’s get this cleanup party started! 👷🕵

First candidate for removal is bluecloth.rb: Seems to be only used from the Typo3 bundle, and the code referring to it there seems itself to be unused, see https://github.com/textmate/typo3.tmbundle/pull/1

Stefan