Rivoreo Source Code Repositories
src.rivoreo.one
/
compiler-explorer
/
1dae8cc71fdc26cd95087bee95aeab351dabdc46
/
.
/
etc
/
scripts
/
find-yarn
blob: 49293056db73ce96b606fc6d2cdab0fc9595f8c7 [
file
] [
log
] [
blame
] [
raw
]
#!/bin/sh
set
-
e
OUT
=
"$1"
YARN
=
$
(
pwd
)/
node_modules
/.
bin
/
yarn
if
test
!
-
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
}
>
$
{
OUT
}