Welcome to mirror list, hosted at ThFree Co, Russian Federation.

check_dependencies.sh « frontend « scripts - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 64e7cf9da52cf2fbc2a35fc00ca682bb9b113d75 (plain)
1
2
3
4
5
6
7
8
9
10
11
#!/usr/bin/env bash

if ! yarn check --integrity 2>&1 > /dev/null
then
  echo
  echo "    $(tput setaf 1)yarn check --integrity$(tput sgr0) failed!"
  echo "    Your dependencies probably don't match the yarn.lock file."
  echo "    Please run $(tput setaf 2)yarn install$(tput sgr0) and try again."
  echo
  exit 1
fi