https://github.com/annotation/text-fabric
Raw File
Tip revision: 25cebd7e1536a7d8550f4f0e9934eb329bc0cbf9 authored by Dirk Roorda on 30 December 2020, 13:59:33 UTC
improved loading of appless corpora
Tip revision: 25cebd7
commitapps.sh
#!/bin/sh

function givehelp {
    echo "./commitapps.sh <app> <msg>"
    echo ""
    echo "Commit and push <app> with <tag>, <name>, <msg>"
    echo "If <app> == 'all', then all apps will be committed and pushed"
    echo ""
}

# Create a new release for all or some  apps

annotationdir=~/github/annotation
tooldir=${annotationdir}/text-fabric/tools
tool="${tooldir}/release.py"

if [[ "$1" == "" ]]; then
    givehelp
    echo "Provide an app (or 'all') and a commit message"
    exit
else
    app="$1"
    shift
fi
if [[ "$1" == "" ]]; then
    givehelp
    echo "Provide commit message"
    exit
else
    msg="$1"
    shift
fi
cd $annotationdir

if [[ "$app" == "all" ]]; then
    echo "All apps: commit changes and push"
    apps=`ls -d app-*`
else
    echo "${app}: commit changes" and push
    apps=`ls -d app-$app`
fi
for app in $apps
do
    echo "o-o-o [$app] o-o-o"
    cd $annotationdir/$app
    git add --all .
    git commit -m "$msg"
    git push origin master
done
echo "done"

back to top