witten
/
luminotes
Archived
1
0
Fork 0
This repository has been archived on 2023-12-16. You can view files and clone it, but cannot push or open issues or pull requests.
luminotes/tools/release.sh

13 lines
358 B
Bash
Raw Normal View History

#!/bin/sh
# Run this from the root directory of Luminotes's source. Note: This will nuke your database!
ORIG_PYTHONPATH="$PYTHONPATH"
2007-08-09 19:45:46 +00:00
export PYTHONPATH=.
python2.5 tools/initdb.py
2007-08-09 19:45:46 +00:00
export PYTHONPATH="$ORIG_PYTHONPATH"
cd ..
rm -f luminotes.tar.gz
tar cvfz luminotes.tar.gz --exclude=session --exclude="*.log" --exclude="*.pyc" --exclude=".*" luminotes
cd -