7 lines
86 B
Bash
7 lines
86 B
Bash
#!/bin/sh
|
|
|
|
SVNSERVE=$(dirname $(realpath $0))/svnserve.bin
|
|
|
|
umask 002
|
|
$SVNSERVE "$@"
|
|
|