Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit 1127c27

Browse filesBrowse files
author
Dane Springmeyer
committed
cope with incorrect naming of ios just tarballs - refs TryGhost#461 nodejs/build#45 TryGhost#468
1 parent da220c8 commit 1127c27
Copy full SHA for 1127c27

1 file changed

+2-2Lines changed: 2 additions & 2 deletions

File tree

Expand file treeCollapse file tree
Open diff view settings
Filter options
Expand file treeCollapse file tree
Open diff view settings
Collapse file

‎scripts/build_against_node.sh‎

Copy file name to clipboardExpand all lines: scripts/build_against_node.sh
+2-2Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,12 +55,12 @@ if [[ $(uname -s) == 'Linux' ]]; then
5555
wget https://iojs.org/download/release/${NVER}/iojs-${NVER}-${platform}-x86.tar.gz
5656
tar xf iojs-${NVER}-${platform}-x86.tar.gz
5757
# enable 32 bit iojs
58-
export PATH=$(pwd)/iojs-${NVER}-${platform}-x86/bin:$PATH
58+
export PATH=$(pwd)/iojs-${NVER}-${platform}-x86/bin:$(pwd)/iojs-${NVER}-${platform}-ia32/bin:$PATH
5959
else
6060
wget http://nodejs.org/dist/${NVER}/node-${NVER}-${platform}-x86.tar.gz
6161
tar xf node-${NVER}-${platform}-x86.tar.gz
6262
# enable 32 bit node
63-
export PATH=$(pwd)/node-${NVER}-${platform}-x86/bin:$PATH
63+
export PATH=$(pwd)/node-${NVER}-${platform}-x86/bin:$(pwd)/node-${NVER}-${platform}-ia32/bin:$PATH
6464
fi
6565
node -e "console.log(process.arch,process.execPath)"
6666
# install 32 bit compiler toolchain and X11

0 commit comments

Comments
0 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.