Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/tools/mkChangeLog
blob: 400b9fe1ef93de5492ec4ef4bd71cc762abd2086 (plain)
1
2
3
4
5
6
7
8
9
10
11
#!/bin/bash
# Creates or updates ChangeLog file. Only for developers.

cd ..
echo "ChangeLog file for XaoS - generated automatically by tools/mkChangeLog.
Please do not edit this file: your changes will be lost.

" > ChangeLog
export LC_ALL=C
svn log >> ChangeLog
svn commit -m "Automatic update by mkChangeLog" ChangeLog