9 lines
324 B
Bash
Executable File
9 lines
324 B
Bash
Executable File
#!/bin/bash
|
|
# Copyright 1999-2020. Plesk International GmbH. All Rights Reserved.
|
|
COMPOSER_BIN="/opt/psa/var/modules/composer/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" "$@"
|