source: conf/hooks-env.tmpl @ 18

Last change on this file since 18 was 18, checked in by rwerner, 3 years ago
File size: 904 bytes
RevLine 
[18]1### This file is an example hook script environment configuration file.
2### Hook scripts run in an empty environment by default.
3### As shown below each section defines environment variables for a
4### particular hook script. The [default] section defines environment
5### variables for all hook scripts, unless overridden by a hook-specific
6### section.
7
8### This example configures a UTF-8 locale for all hook scripts, so that
9### special characters, such as umlauts, may be printed to stderr.
10### If UTF-8 is used with a mod_dav_svn server, the SVNUseUTF8 option must
11### also be set to 'yes' in httpd.conf.
12### With svnserve, the LANG environment variable of the svnserve process
13### must be set to the same value as given here.
14[default]
15LANG = en_US.UTF-8
16
17### This sets the PATH environment variable for the pre-commit hook.
18[pre-commit]
19PATH = /usr/local/bin:/usr/bin:/usr/sbin
Note: See TracBrowser for help on using the repository browser.