mirror of
https://git.code.sf.net/p/seeddms/code
synced 2025-02-06 15:14:58 +00:00
![Uwe Steinmann](/assets/img/avatar_default.png)
passing arguments with whitespace didn't work thanks to Jan-Benedict for providing this patch
9 lines
185 B
Bash
Executable File
9 lines
185 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
if [ -z "${SEEDDMS_HOME}" ]; then
|
|
echo 'Please set $SEEDDMS_HOME before running this script'
|
|
exit 1
|
|
fi
|
|
|
|
exec php -f "${SEEDDMS_HOME}/utils/indexer.php" -- "${@}"
|