Skip to content
Snippets Groups Projects
Commit 26f228eb authored by Bob Mottram's avatar Bob Mottram
Browse files

Try installing webpack without yarn

parent f4946f0b
No related branches found
No related tags found
No related merge requests found
......@@ -645,16 +645,21 @@ if [ ! "\$?" = "0" ]; then
echo $'PeerTube Failed to install yarn'
exit 79353234
fi
yarn add -D webpack
npm install --arch=$NPM_ARCH webpack --no-optional
if [ ! "\$?" = "0" ]; then
echo $'PeerTube failed to add webpack'
exit 67342823
fi
yarn install --ignore-optional
if [ ! "\$?" = "0" ]; then
echo $'PeerTube failed to run yarn install'
exit 63754235
echo $'PeerTube failed to install webpack'
exit 68386353
fi
#yarn add -D webpack
#if [ ! "\$?" = "0" ]; then
# echo $'PeerTube failed to add webpack'
# exit 67342823
#fi
#yarn install --ignore-optional
#if [ ! "\$?" = "0" ]; then
# echo $'PeerTube failed to run yarn install'
# exit 63754235
#fi
npm install --arch=$NPM_ARCH --no-optional
if [ ! "\$?" = "0" ]; then
echo $'PeerTube failed to install peertube'
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment