A fork of the Mastodon Android client with Bluesky/ATProto support.
at main 9 lines 227 B view raw
1#!/bin/bash 2 3version=$(grep 'versionCode' mastodon/build.gradle | cut -w -f 3) 4pushd "fastlane/metadata/android/en-US/changelogs" 5newFile="$version.txt" 6vim "$newFile" || exit 1 7rm default.txt 8ln -s "$newFile" default.txt 9popd