Try some additional peertube build dependencies
This commit is contained in:
parent
02d7270647
commit
e724c5f32f
|
@ -642,20 +642,30 @@ if [ ! "$?" = "0" ]; then
|
||||||
echo $'PeerTube Failed to install yarn'
|
echo $'PeerTube Failed to install yarn'
|
||||||
exit 79353234
|
exit 79353234
|
||||||
fi
|
fi
|
||||||
|
npm install --arch=$NPM_ARCH bcrypt@1.0.3 --build-from-source
|
||||||
|
if [ ! "$?" = "0" ]; then
|
||||||
|
echo $'PeerTube failed to build bcrypt'
|
||||||
|
exit 73563543
|
||||||
|
fi
|
||||||
|
npm install --arch=$NPM_ARCH fsevents@1.1.3 --build-from-source
|
||||||
|
if [ ! "$?" = "0" ]; then
|
||||||
|
echo $'PeerTube failed to build fsevents'
|
||||||
|
exit 2846393
|
||||||
|
fi
|
||||||
yarn add -D webpack --network-concurrency 1
|
yarn add -D webpack --network-concurrency 1
|
||||||
yarn install
|
yarn install
|
||||||
if [ ! "$?" = "0" ]; then
|
if [ ! "$?" = "0" ]; then
|
||||||
echo $'PeerTube Failed to run yarn install'
|
echo $'PeerTube failed to run yarn install'
|
||||||
exit 63754235
|
exit 63754235
|
||||||
fi
|
fi
|
||||||
npm install --arch=$NPM_ARCH
|
npm install --arch=$NPM_ARCH
|
||||||
if [ ! "$?" = "0" ]; then
|
if [ ! "$?" = "0" ]; then
|
||||||
echo $'PeerTube Failed to install peertube'
|
echo $'PeerTube failed to install peertube'
|
||||||
exit 7835243
|
exit 7835243
|
||||||
fi
|
fi
|
||||||
npm run build --arch=$NPM_ARCH
|
npm run build --arch=$NPM_ARCH
|
||||||
if [ ! "$?" = "0" ]; then
|
if [ ! "$?" = "0" ]; then
|
||||||
echo $'PeerTube Failed to build peertube'
|
echo $'PeerTube failed to build peertube'
|
||||||
exit 5293593
|
exit 5293593
|
||||||
fi
|
fi
|
||||||
EOF
|
EOF
|
||||||
|
|
Loading…
Reference in New Issue