Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
P
pyodide
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Boxiang Sun
pyodide
Commits
775750bd
Commit
775750bd
authored
May 07, 2019
by
Boxiang Sun
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Makesure the build dir exist even we build the packages manually
parent
5cc234bb
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
1 deletion
+3
-1
pyodide_build/buildall.py
pyodide_build/buildall.py
+3
-1
No files found.
pyodide_build/buildall.py
View file @
775750bd
...
...
@@ -7,7 +7,7 @@ Build all of the packages in a given directory.
import
argparse
import
json
from
pathlib
import
Path
import
shutil
import
shutil
,
os
from
.
import
common
...
...
@@ -20,6 +20,8 @@ def build_package(pkgname, dependencies, packagesdir, outputdir, args):
for
req
in
reqs
:
build_package
(
req
,
dependencies
,
packagesdir
,
outputdir
,
args
)
buildpkg
.
build_package
(
packagesdir
/
pkgname
/
'meta.yaml'
,
args
)
if
not
os
.
path
.
exists
(
outputdir
):
os
.
mkdir
(
outputdir
)
shutil
.
copyfile
(
packagesdir
/
pkgname
/
'build'
/
(
pkgname
+
'.data'
),
outputdir
/
(
pkgname
+
'.data'
))
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment