Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
F
freedombone
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Context Sensitive Group
freedombone
Commits
f4946f0b
Commit
f4946f0b
authored
7 years ago
by
Bob Mottram
Browse files
Options
Downloads
Patches
Plain Diff
Check for webpack failure
parent
6bdbc32a
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/freedombone-app-peertube
+9
-5
9 additions, 5 deletions
src/freedombone-app-peertube
with
9 additions
and
5 deletions
src/freedombone-app-peertube
+
9
−
5
View file @
f4946f0b
...
...
@@ -641,23 +641,27 @@ function mesh_install_peertube {
#!/bin/bash
cd
$PEERTUBE_DIR
npm install --arch=
$NPM_ARCH
-g yarn
if [ ! "
$?
" = "0" ]; then
if [ ! "
\
$
?" = "0" ]; then
echo
$'
PeerTube Failed to install yarn'
exit 79353234
fi
yarn add -D webpack --network-concurrency 1
yarn add -D webpack
if [ ! "
\$
?" = "0" ]; then
echo
$'
PeerTube failed to add webpack'
exit 67342823
fi
yarn install --ignore-optional
if [ ! "
$?
" = "0" ]; then
if [ ! "
\
$
?" = "0" ]; then
echo
$'
PeerTube failed to run yarn install'
exit 63754235
fi
npm install --arch=
$NPM_ARCH
--no-optional
if [ ! "
$?
" = "0" ]; then
if [ ! "
\
$
?" = "0" ]; then
echo
$'
PeerTube failed to install peertube'
exit 7835243
fi
npm run build --arch=
$NPM_ARCH
--no-optional
if [ ! "
$?
" = "0" ]; then
if [ ! "
\
$
?" = "0" ]; then
echo
$'
PeerTube failed to build peertube'
exit 5293593
fi
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment