aboutsummaryrefslogtreecommitdiff
path: root/configure
diff options
context:
space:
mode:
authorFlorian Dold <florian.dold@gmail.com>2017-05-23 13:18:23 +0200
committerFlorian Dold <florian.dold@gmail.com>2017-05-23 13:18:23 +0200
commit12eeaf863790fe57bfbf271457735a8603011404 (patch)
treee96c42c15dbcb97af68d5ad03653ff91ba250adc /configure
parent4e768c31fa01cb2cfaa27d1ce5f62a88e9ce598d (diff)
downloadwallet-core-12eeaf863790fe57bfbf271457735a8603011404.tar.xz
configure error message
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure8
1 files changed, 4 insertions, 4 deletions
diff --git a/configure b/configure
index 472d33797..3ec6d4d12 100755
--- a/configure
+++ b/configure
@@ -17,21 +17,21 @@ if ! node -p 'process.exit(!(/v([0-9]+)/.exec(process.version)[1] >= 4))'; then
fi
if ! yarn --version &>/dev/null; then
- echo 'error: yarn missing'
+ echo 'Error: yarn missing. See https://yarnpkg.com/en/docs/install'
exit 1
fi
-if ! find --version >/dev/null; then
+if ! find --version &>/dev/null; then
echo 'Error: find missing'
exit 1
fi
-if ! xargs --version >/dev/null; then
+if ! xargs --version &>/dev/null; then
echo 'Error: xargs missing'
exit 1
fi
-if ! msgmerge --version >/dev/null; then
+if ! msgmerge --version &>/dev/null; then
echo "Warning: msgmerge missing, i18n won't work"
exit 1
fi