The Open Source kanban (built with Meteor). Keep variable/table/field names camelCase. For translations, only add Pull Request changes to wekan/i18n/en.i18n.json , other translations are done at https://transifex.com/wekan/wekan only.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
wekan/packages/wekan-fullcalendar/update.sh

14 lines
321 B

#!/bin/bash
set -e
git submodule init
git submodule update --remote
cd "`dirname $0`/fullcalendar"
git pull --rebase origin master
if [[ -z "$1" ]];then
VER=`git tag | tail -n1 | sed 's/^v//'`
else
VER="$1"
fi
git checkout v$VER
sed -i -e 's/version: "\([^"]*\)"/version: "'$VER'"/' ../package.js