friendica-github/bin/console

15 lines
372 B
Text
Raw Permalink Normal View History

#!/bin/bash
2018-03-18 09:12:39 +00:00
# SPDX-FileCopyrightText: 2010 - 2024 the Friendica project
#
# SPDX-License-Identifier: CC0-1.0
2018-03-18 09:12:39 +00:00
dir=$(cd "${0%[/\\]*}" > /dev/null; 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
2018-03-18 09:12:39 +00:00
dir=$(cygpath -m "$dir");
fi
php "${dir}/console.php" "$@"