Files
server/usr/bin/composer
2026-01-07 20:52:11 +01:00

9 lines
315 B
Bash
Executable File

#!/bin/bash
# Copyright 1999-2025. WebPros International GmbH. All rights reserved.
COMPOSER_BIN="/usr/lib/plesk-9.0/composer.phar"
[ -e "$COMPOSER_BIN" ] || { echo "'$COMPOSER_BIN' not found" >&2; exit 1; }
[ -x "$COMPOSER_BIN" ] || { echo "'$COMPOSER_BIN' is not executable" >&2; exit 1; }
"$COMPOSER_BIN" "$@"