mirror of
https://github.com/Sylius/Sylius.git
synced 2026-07-14 17:10:53 +00:00
11 lines
485 B
Bash
Executable file
11 lines
485 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
source "$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)/../../../bash/common.lib.sh"
|
|
source "$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)/../../../bash/application.sh"
|
|
|
|
print_header "Installing dependencies" "Sylius"
|
|
run_command "composer install --no-interaction --no-scripts --prefer-dist" || exit $?
|
|
|
|
print_header "Warming up dependencies" "Sylius"
|
|
run_command "composer run-script travis-build --no-interaction" || exit $?
|
|
run_command "yarn install" || exit $?
|