Rivoreo Source Code Repositories
src.rivoreo.one
/
compiler-explorer
/
d61227715dc2f2889fecedc6779a227429b150d2
/
.
/
etc
/
scripts
/
find-yarn
blob: f524b984f615dc363e50ee6948e7338b7608c65f [
file
] [
log
] [
blame
] [
raw
]
#!/bin/bash
set
-
e
YARN
=
$
(
pwd
)/
node_modules
/.
bin
/
yarn
if
[[
!
-
x
"${YARN}"
]];
then
# Ensure any npm output goes to stderr and doesn't affect our
# echo output below
>&
2
npm install yarn
fi
echo $
{
YARN
}