mirror of
https://github.com/status-im/react-native.git
synced 2025-01-13 02:54:42 +00:00
6f6084db69
Summary: Due to issues with Circle's Docker images ([link](https://twitter.com/circleci/status/974694807091073024)), jobs are failing with an error "yarn not found". Test Plan Run on Circle Release Notes [GENERAL][MINOR][.circleci] - Fix Circle issue Closes https://github.com/facebook/react-native/pull/18419 Differential Revision: D7312052 Pulled By: hramos fbshipit-source-id: 2768b9c69046a2f80518430024d3e7afbbd7de65
14 lines
195 B
Bash
Executable File
14 lines
195 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# execute command
|
|
$@
|
|
|
|
# check status
|
|
STATUS=$?
|
|
if [ $STATUS == 0 ]; then
|
|
echo "Command '$@' completed successfully"
|
|
else
|
|
echo "Command '$@' exited with error status $STATUS"
|
|
fi
|
|
|