mirror of
https://github.com/cypress-io/cypress.git
synced 2026-01-06 06:29:45 -06:00
10 lines
191 B
Bash
Executable File
10 lines
191 B
Bash
Executable File
#!/bin/bash
|
|
if [ $SKIP_DEPCHECK ]; then exit 0; fi
|
|
|
|
yarn check --integrity
|
|
|
|
if [ $? -ne 0 ]; then
|
|
echo 'Your dependencies are out of date; installing the correct dependencies...'
|
|
yarn
|
|
fi
|