mirror of
https://git.code.sf.net/p/seeddms/code
synced 2024-11-26 15:32:13 +00:00
2302546286
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" -- "${@}"
|