mirror of
https://github.com/friendica/friendica
synced 2025-02-16 00:54:01 +00:00
14 lines
383 B
Bash
Executable file
14 lines
383 B
Bash
Executable file
#!/bin/sh
|
|
|
|
# SPDX-FileCopyrightText: 2010 - 2024 the Friendica project
|
|
#
|
|
# SPDX-License-Identifier: CC0-1.0
|
|
|
|
dir=$(cd "$(dirname "$0")" > /dev/null 2>&1; pwd)
|
|
|
|
if [ -d /proc/cygdrive ] && [ "$(which php)" = "$(readlink -n /proc/cygdrive)/*" ]; then
|
|
# We are in Cygwin using Windows php, so the path must be translated
|
|
dir=$(cygpath -m "$dir")
|
|
fi
|
|
|
|
php "${dir}/console.php" "$@"
|