Archived
1
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
Dan Helfman d1ecaef3d6 Fixed tools/release.sh to include an empty session directory in the
produced tarball. Without a session directory, installing and running
Luminotes server would yield session deadlock errors.
2008-05-09 19:52:15 +00:00

9 lines
213 B
Bash
Executable File

#!/bin/sh
# Run this from the root directory of Luminotes's source.
cd ..
rm -f luminotes.tar.gz
tar cvfz luminotes.tar.gz --exclude="session/*" --exclude="*.log" --exclude="*.pyc" --exclude=".*" luminotes
cd -