Selaa lähdekoodia

Try n without arch

Bob Mottram 7 vuotta sitten
vanhempi
commit
4055590fcc
2 muutettua tiedostoa jossa 1 lisäystä ja 4 poistoa
  1. 0
    3
      src/freedombone-app-ipfs
  2. 1
    1
      src/freedombone-utils-nodejs

+ 0
- 3
src/freedombone-app-ipfs Näytä tiedosto

221
         return
221
         return
222
     fi
222
     fi
223
 
223
 
224
-    chroot ${rootdir} apt-get -yq install nodejs curl
225
     chroot ${rootdir} apt-get -yq install libpam0g-dev fuse
224
     chroot ${rootdir} apt-get -yq install libpam0g-dev fuse
226
 
225
 
227
     if [ ! -f ${rootdir}/usr/bin/nodejs ]; then
226
     if [ ! -f ${rootdir}/usr/bin/nodejs ]; then
300
         return
299
         return
301
     fi
300
     fi
302
 
301
 
303
-    apt-get -yq install nodejs
304
-    apt-get -yq install npm
305
     apt-get -yq install libpam0g-dev fuse
302
     apt-get -yq install libpam0g-dev fuse
306
 
303
 
307
     if [ ! -f /usr/bin/nodejs ]; then
304
     if [ ! -f /usr/bin/nodejs ]; then

+ 1
- 1
src/freedombone-utils-nodejs Näytä tiedosto

150
 
150
 
151
     # update from the old debian nodejs version
151
     # update from the old debian nodejs version
152
     $mesh_install_nodejs_prefix npm install --arch=$NPM_ARCH -g n@${NODEJS_N_VERSION} --save
152
     $mesh_install_nodejs_prefix npm install --arch=$NPM_ARCH -g n@${NODEJS_N_VERSION} --save
153
-    $mesh_install_nodejs_prefix n --arch $N_ARCH ${NODEJS_VERSION}
153
+    $mesh_install_nodejs_prefix n ${NODEJS_VERSION}
154
     cp $rootdir/root/npm $rootdir/usr/bin/npm
154
     cp $rootdir/root/npm $rootdir/usr/bin/npm
155
 }
155
 }
156
 
156