First pass at adding key files

This commit is contained in:
dsainty
2024-06-17 21:49:12 +10:00
commit aa25e9347f
1274 changed files with 392549 additions and 0 deletions

View File

@ -0,0 +1,16 @@
#!/bin/sh
# This script creates the symlinks needed for a checked out GMail to run
# properly, including fileman.
die() {
echo "$*" 1>&2
exit 1
}
[ "`basename \`pwd\``" = "mysqlman" -a -e "symlink.sh" ] || die "Must be run from mysqlman directory"
[ -d ../library/GT ] || die "Could not find library modules; perhaps you don't have library checked out?"
ln -snf ../library/{GT,*.pm} . || die "Could not link library modules; perhaps you don't have library checked out?"
echo "Good to go!"