Skip to content

Instantly share code, notes, and snippets.

@zeroedout
Created March 30, 2017 00:44
Show Gist options
  • Save zeroedout/ade40b5ef666373bff6a3bd1866c02e1 to your computer and use it in GitHub Desktop.
Save zeroedout/ade40b5ef666373bff6a3bd1866c02e1 to your computer and use it in GitHub Desktop.
peerio build fail on Arch Linux
➜ peerio-client git:(master) makepkg -si
==> Making package: peerio-client 1.6.4-2 (Wed Mar 29 16:52:55 PDT 2017)
==> Checking runtime dependencies...
==> Checking buildtime dependencies...
==> Retrieving sources...
-> Downloading peerio-client-1.6.4.tar.gz...
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
100 3232k 100 3232k 0 0 3333k 0 --:--:-- --:--:-- --:--:-- 3332k
==> Validating source files with md5sums...
peerio-client-1.6.4.tar.gz ... Passed
==> Extracting sources...
-> Extracting peerio-client-1.6.4.tar.gz with bsdtar
==> Starting build()...
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
100 6692 100 6692 0 0 91130 0 --:--:-- --:--:-- --:--:-- 91671
patching file ./gulpfile.js
if ! test -d tmp/nodejs; then \
mkdir -p tmp; \
if wget https://nodejs.org/dist/v4.4.1/node-v4.4.1-linux-x64.tar.xz -O tmp/peerio-nodejs.tar.xz; then \
if tar -Ctmp -xJf tmp/peerio-nodejs.tar.xz; then \
mv tmp/node-v4.4.1-linux-x64 tmp/nodejs; \
else \
echo failed extracting nodejs >&2; \
exit 1; \
fi; \
rm -f tmp/peerio-nodejs.tar.xz; \
else \
echo failed fetching nodejs >&2; \
exit 1; \
fi; \
fi; \
if ! test -d build; then \
test -x node_modules/.bin/nw || PATH=`pwd`/tmp/nodejs/bin:$PATH npm install; \
test -d application/node_modules || ( cd application && PATH=`pwd`/../tmp/nodejs/bin:$PATH npm install ) ; \
fi
test -x ./node_modules/.bin/uglifyjs || PATH=`pwd`/tmp/nodejs/bin:$PATH npm install uglify-js
--2017-03-29 16:52:57-- https://nodejs.org/dist/v4.4.1/node-v4.4.1-linux-x64.tar.xz
Loaded CA certificate '/etc/ssl/certs/ca-certificates.crt'
Resolving nodejs.org... 104.20.22.46, 104.20.23.46, 2400:cb00:2048:1::6814:162e, ...
Connecting to nodejs.org|104.20.22.46|:443... connected.
200 OK.............] | normalizeTree: sill install loadCurrentTree
Length: 8260204 (7.9M) [application/x-xz]
Saving to: ‘tmp/peerio-nodejs.tar.xz’
tmp/peerio-nodejs.tar.xz 0%[ ] 0 --.-KB/s [tmp/peerio-nodejs.tar.xz 2%[> ] 211.89K 978KB/s [tmp/peerio-nodejs.tar.xz 12%[=======> ] 983.76K 2.30MB/s [tmp/peerio-nodejs.tar.xz 22%[==============> ] 1.79M 2.89MB/s [tmp/peerio-nodejs.tar.xz 33%[======================> ] 2.65M 3.23MB/s [tmp/peerio-nodejs.tar.xz 44%[=============================> ] 3.49M 3.42MB/s [tmp/peerio-nodejs.tar.xz 55%[====================================> ] 4.33M 3.55MB/s [tmp/peerio-nodejs.tar.xz 65%[============================================> ] 5.18M 3.64MB/s [tmp/peerio-nodejs.tar.xz 76%[===================================================> ] 6.02M 3.71MB/s [tmp/peerio-nodejs.tar.xz 86%[===========================================================> ] 6.85M 3.75MB/s [tmp/peerio-nodejs.tar.xz 97%[==================================================================> ] 7.69M 3.80MB/s [tmp/peerio-nodejs.tar.xz 100%[====================================================================>] 7.88M 3.81MB/s in 2.1s
2017-03-29 16:53:00 (3.81 MB/s) - ‘tmp/peerio-nodejs.tar.xz’ saved [8260204/8260204]
peerio-client@1.6.4 /home/zeroedout/fastsrc/peerio-client/src/peerio-client
└─┬ uglify-js@2.8.18
├── source-map@0.5.6
├── uglify-to-browserify@1.0.2
└─┬ yargs@3.10.0
├── camelcase@1.2.1
├─┬ cliui@2.1.0
│ ├─┬ center-align@0.1.3
│ │ ├─┬ align-text@0.1.4
│ │ │ ├─┬ kind-of@3.1.0
│ │ │ │ └── is-buffer@1.1.5
│ │ │ ├── longest@1.0.1
│ │ │ └── repeat-string@1.6.1
│ │ └── lazy-cache@1.0.4
│ ├─┬ right-align@0.1.3
│ │ └── align-text@0.1.4 deduped
│ └── wordwrap@0.0.2
├── decamelize@1.2.0
└── window-size@0.1.0
for lib in application/js/lib/angular application/js/lib/hotkeys application/js/lib/papaparse application/js/lib/pouchdb application/js/lib/qrcode application/js/lib/sweet-alert application/js/lib/zepto; do \
if test -s $lib.js; then \
continue; \
elif echo $lib | grep socket.io >/dev/null; then \
cat $lib.src*.js | PATH=`pwd`/tmp/nodejs/bin:$PATH ./node_modules/.bin/uglifyjs -o $lib.js; \
elif echo $lib | grep -E '(angular|bluebird|papaparse|pouchdb|qrcode|sweet-alert)' >/dev/null; then \
cat $lib.src*.js | PATH=`pwd`/tmp/nodejs/bin:$PATH ./node_modules/.bin/uglifyjs --mangle -o $lib.js; \
else \
cat $lib.src*.js | PATH=`pwd`/tmp/nodejs/bin:$PATH ./node_modules/.bin/uglifyjs --compress --mangle -o $lib.js; \
fi; \
rm -f $lib.src*.js; \
done
npm WARN engine gulp-shell@0.6.3: wanted: {"node":">=4.8.0 <5.0.0 || >=5.7.0"} (current: {"node":"4.4.1","npm":"2.14.20"})
npm WARN optional dep failed, continuing appdmg@0.4.5
npm WARN deprecated minimatch@0.2.14: Please update to minimatch 3.0.2 or higher to avoid a RegExp DoS issue
npm WARN deprecated node-uuid@1.4.8: Use uuid module instead
npm WARN deprecated minimatch@2.0.10: Please update to minimatch 3.0.2 or higher to avoid a RegExp DoS issue
npm WARN deprecated minimatch@0.3.0: Please update to minimatch 3.0.2 or higher to avoid a RegExp DoS issue
npm WARN deprecated graceful-fs@1.2.3: graceful-fs v3.0.0 and before will fail on node releases >= v7.0. Please update to graceful-fs@^4.0.0 as soon as possible. Use 'npm ls graceful-fs' to find it in the tree.
-
> nw@0.21.3 postinstall /home/zeroedout/fastsrc/peerio-client/src/peerio-client/node_modules/nw
> node scripts/install.js
> mmmagic@0.4.5 install /home/zeroedout/fastsrc/peerio-client/src/peerio-client/node_modules/virustotal.js/node_modules/http-request/node_modules/mmmagic
> node-gyp rebuild
make[1]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule.
make[1]: Entering directory '/home/zeroedout/fastsrc/peerio-client/src/peerio-client/node_modules/virustotal.js/node_modules/http-request/node_modules/mmmagic/build'
CC(target) Release/obj.target/libmagic/deps/libmagic/src/apprentice.o
CC(target) Release/obj.target/libmagic/deps/libmagic/src/apptype.o
CC(target) Release/obj.target/libmagic/deps/libmagic/src/ascmagic.o
CC(target) Release/obj.target/libmagic/deps/libmagic/src/cdf.o
CC(target) Release/obj.target/libmagic/deps/libmagic/src/cdf_time.o
CC(target) Release/obj.target/libmagic/deps/libmagic/src/compress.o
CC(target) Release/obj.target/libmagic/deps/libmagic/src/der.o
CC(target) Release/obj.target/libmagic/deps/libmagic/src/encoding.o
CC(target) Release/obj.target/libmagic/deps/libmagic/src/fsmagic.o
../deps/libmagic/src/fsmagic.c: In function ‘file_fsmagic’:
../deps/libmagic/src/fsmagic.c:222:13: warning: In the GNU C Library, "major" is defined
by <sys/sysmacros.h>. For historical compatibility, it is
currently defined by <sys/types.h> as well, but we plan to
remove this soon. To use "major", include <sys/sysmacros.h>
directly. If you did not intend to use a system-defined macro
"major", you should undefine it after including <sys/types.h>.
COMMA, (long)major(sb->st_rdev),
^~~~~~~~~~~~~~~~~~~~~~~~~~~
../deps/libmagic/src/fsmagic.c:223:13: warning: In the GNU C Library, "minor" is defined
by <sys/sysmacros.h>. For historical compatibility, it is
currently defined by <sys/types.h> as well, but we plan to
remove this soon. To use "minor", include <sys/sysmacros.h>
directly. If you did not intend to use a system-defined macro
"minor", you should undefine it after including <sys/types.h>.
(long)minor(sb->st_rdev)) == -1)
^~~~~~~~~~~~~~~~~~~~~~~~~~~
../deps/libmagic/src/fsmagic.c:256:13: warning: In the GNU C Library, "major" is defined
by <sys/sysmacros.h>. For historical compatibility, it is
currently defined by <sys/types.h> as well, but we plan to
remove this soon. To use "major", include <sys/sysmacros.h>
directly. If you did not intend to use a system-defined macro
"major", you should undefine it after including <sys/types.h>.
COMMA, (long)major(sb->st_rdev),
^~~~~~~~~~~~~~~~~~~~~~~~~~~
../deps/libmagic/src/fsmagic.c:257:13: warning: In the GNU C Library, "minor" is defined
by <sys/sysmacros.h>. For historical compatibility, it is
currently defined by <sys/types.h> as well, but we plan to
remove this soon. To use "minor", include <sys/sysmacros.h>
directly. If you did not intend to use a system-defined macro
"minor", you should undefine it after including <sys/types.h>.
(long)minor(sb->st_rdev)) == -1)
^~~~~~~~~~~~~~~~~~~~~~~~~~~
CC(target) Release/obj.target/libmagic/deps/libmagic/src/funcs.o
../deps/libmagic/src/funcs.c: In function ‘file_buffer’:
../deps/libmagic/src/funcs.c:253:2: warning: this ‘if’ clause does not guard... [-Wmisleading-indentation]
if ((ms->flags & MAGIC_NO_CHECK_SOFT) == 0)
^~
../deps/libmagic/src/funcs.c:256:3: note: ...this statement, but the latter is misleadingly indented as if it is guarded by the ‘if’
if ((ms->flags & MAGIC_DEBUG) != 0)
^~
CC(target) Release/obj.target/libmagic/deps/libmagic/src/is_tar.o
CC(target) Release/obj.target/libmagic/deps/libmagic/src/magic.o
CC(target) Release/obj.target/libmagic/deps/libmagic/src/print.o
CC(target) Release/obj.target/libmagic/deps/libmagic/src/readcdf.o
CC(target) Release/obj.target/libmagic/deps/libmagic/src/readelf.o
CC(target) Release/obj.target/libmagic/deps/libmagic/src/softmagic.o
CC(target) Release/obj.target/libmagic/deps/libmagic/src/fmtcheck.o
CC(target) Release/obj.target/libmagic/deps/libmagic/src/strlcat.o
CC(target) Release/obj.target/libmagic/deps/libmagic/src/strlcpy.o
AR(target) Release/obj.target/deps/libmagic/magic.a
COPY Release/magic.a
CC(target) Release/obj.target/libpcre/deps/libmagic/pcre/pcre_byte_order.o
CC(target) Release/obj.target/libpcre/deps/libmagic/pcre/pcre_chartables.o
CC(target) Release/obj.target/libpcre/deps/libmagic/pcre/pcre_compile.o
CC(target) Release/obj.target/libpcre/deps/libmagic/pcre/pcre_config.o
CC(target) Release/obj.target/libpcre/deps/libmagic/pcre/pcre_dfa_exec.o
CC(target) Release/obj.target/libpcre/deps/libmagic/pcre/pcre_exec.o
CC(target) Release/obj.target/libpcre/deps/libmagic/pcre/pcre_fullinfo.o
CC(target) Release/obj.target/libpcre/deps/libmagic/pcre/pcre_get.o
CC(target) Release/obj.target/libpcre/deps/libmagic/pcre/pcre_globals.o
CC(target) Release/obj.target/libpcre/deps/libmagic/pcre/pcre_jit_compile.o
CC(target) Release/obj.target/libpcre/deps/libmagic/pcre/pcre_maketables.o
CC(target) Release/obj.target/libpcre/deps/libmagic/pcre/pcre_newline.o
CC(target) Release/obj.target/libpcre/deps/libmagic/pcre/pcre_ord2utf8.o
CC(target) Release/obj.target/libpcre/deps/libmagic/pcre/pcre_refcount.o
CC(target) Release/obj.target/libpcre/deps/libmagic/pcre/pcre_string_utils.o
CC(target) Release/obj.target/libpcre/deps/libmagic/pcre/pcre_study.o
CC(target) Release/obj.target/libpcre/deps/libmagic/pcre/pcre_tables.o
CC(target) Release/obj.target/libpcre/deps/libmagic/pcre/pcre_ucd.o
CC(target) Release/obj.target/libpcre/deps/libmagic/pcre/pcre_valid_utf8.o
CC(target) Release/obj.target/libpcre/deps/libmagic/pcre/pcre_version.o
CC(target) Release/obj.target/libpcre/deps/libmagic/pcre/pcre_xclass.o
CC(target) Release/obj.target/libpcre/deps/libmagic/pcre/pcreposix.o
AR(target) Release/obj.target/deps/libmagic/pcre/pcre.a
COPY Release/pcre.a
CXX(target) Release/obj.target/magic/src/binding.o
SOLINK_MODULE(target) Release/obj.target/magic.node
COPY Release/magic.node
make[1]: Leaving directory '/home/zeroedout/fastsrc/peerio-client/src/peerio-client/node_modules/virustotal.js/node_modules/http-request/node_modules/mmmagic/build'
gulp-rename@1.2.2 node_modules/gulp-rename
minimist@1.2.0 node_modules/minimist
gulp-replace@0.5.4 node_modules/gulp-replace
├── replacestream@4.0.2 (object-assign@4.1.1, escape-string-regexp@1.0.5)
├── istextorbinary@1.0.2 (binaryextensions@1.0.1, textextensions@1.0.2)
└── readable-stream@2.2.6 (buffer-shims@1.0.0, string_decoder@0.10.31, inherits@2.0.3, process-nextick-args@1.0.7, util-deprecate@1.0.2, core-util-is@1.0.2, isarray@1.0.0)
gulp-ignore@2.0.2 node_modules/gulp-ignore
├── through2@2.0.3 (xtend@4.0.1, readable-stream@2.2.6)
└── gulp-match@1.0.3 (minimatch@3.0.3)
del@1.2.1 node_modules/del
├── is-path-cwd@1.0.0
├── object-assign@3.0.0
├── each-async@1.1.1 (set-immediate-shim@1.0.1, onetime@1.1.0)
├── is-path-in-cwd@1.0.0 (is-path-inside@1.0.0)
├── globby@2.1.0 (async@1.5.2, array-union@1.0.2, glob@5.0.15)
└── rimraf@2.6.1 (glob@7.1.1)
run-sequence@1.2.2 node_modules/run-sequence
├── chalk@1.1.3 (escape-string-regexp@1.0.5, supports-color@2.0.0, ansi-styles@2.2.1, has-ansi@2.0.0, strip-ansi@3.0.1)
└── gulp-util@3.0.8 (array-differ@1.0.0, lodash._reescape@3.0.0, lodash._reevaluate@3.0.0, lodash._reinterpolate@3.0.0, object-assign@3.0.0, array-uniq@1.0.3, beeper@1.1.1, dateformat@2.0.0, replace-ext@0.0.1, has-gulplog@0.1.0, fancy-log@1.3.0, vinyl@0.5.3, gulplog@1.0.0, lodash.template@3.6.2, through2@2.0.3, multipipe@0.1.2)
gulp-zip@4.0.0 node_modules/gulp-zip
├── get-stream@3.0.0
├── yazl@2.4.2 (buffer-crc32@0.2.13)
├── through2@2.0.3 (xtend@4.0.1, readable-stream@2.2.6)
└── gulp-util@3.0.8 (array-differ@1.0.0, object-assign@3.0.0, lodash._reinterpolate@3.0.0, lodash._reescape@3.0.0, lodash._reevaluate@3.0.0, array-uniq@1.0.3, beeper@1.1.1, dateformat@2.0.0, replace-ext@0.0.1, has-gulplog@0.1.0, fancy-log@1.3.0, vinyl@0.5.3, chalk@1.1.3, gulplog@1.0.0, lodash.template@3.6.2, multipipe@0.1.2)
gulp-shell@0.6.3 node_modules/gulp-shell
├── through2@2.0.3 (xtend@4.0.1, readable-stream@2.2.6)
├── gulp-util@3.0.8 (array-differ@1.0.0, lodash._reevaluate@3.0.0, beeper@1.1.1, object-assign@3.0.0, lodash._reescape@3.0.0, array-uniq@1.0.3, lodash._reinterpolate@3.0.0, dateformat@2.0.0, replace-ext@0.0.1, has-gulplog@0.1.0, fancy-log@1.3.0, vinyl@0.5.3, chalk@1.1.3, gulplog@1.0.0, lodash.template@3.6.2, multipipe@0.1.2)
└── async@2.2.0
gulp@3.9.1 node_modules/gulp
├── interpret@1.0.2
├── pretty-hrtime@1.0.3
├── deprecated@0.0.1
├── archy@1.0.0
├── tildify@1.2.0 (os-homedir@1.0.2)
├── v8flags@2.0.11 (user-home@1.1.1)
├── semver@4.3.6
├── chalk@1.1.3 (escape-string-regexp@1.0.5, supports-color@2.0.0, ansi-styles@2.2.1, strip-ansi@3.0.1, has-ansi@2.0.0)
├── orchestrator@0.3.8 (stream-consume@0.1.0, sequencify@0.0.7, end-of-stream@0.1.5)
├── gulp-util@3.0.8 (array-differ@1.0.0, object-assign@3.0.0, beeper@1.1.1, lodash._reinterpolate@3.0.0, lodash._reevaluate@3.0.0, lodash._reescape@3.0.0, array-uniq@1.0.3, dateformat@2.0.0, replace-ext@0.0.1, has-gulplog@0.1.0, fancy-log@1.3.0, vinyl@0.5.3, lodash.template@3.6.2, gulplog@1.0.0, through2@2.0.3, multipipe@0.1.2)
├── vinyl-fs@0.3.14 (strip-bom@1.0.0, defaults@1.0.3, graceful-fs@3.0.11, vinyl@0.4.6, through2@0.6.5, mkdirp@0.5.1, glob-stream@3.1.18, glob-watcher@0.0.6)
└── liftoff@2.3.0 (lodash.isplainobject@4.0.6, lodash.isstring@4.0.1, lodash.mapvalues@4.6.0, rechoir@0.6.2, extend@3.0.0, flagged-respawn@0.3.2, fined@1.0.2, resolve@1.3.2, findup-sync@0.4.3)
gulp-bump@2.7.0 node_modules/gulp-bump
├── semver@5.3.0
├── bump-regex@2.7.0 (xtend@4.0.1)
├── plugin-error@0.1.2 (arr-union@2.1.0, extend-shallow@1.1.4, ansi-red@0.1.1, ansi-cyan@0.1.1, arr-diff@1.1.0)
├── through2@2.0.3 (xtend@4.0.1, readable-stream@2.2.6)
└── plugin-log@0.1.0 (chalk@1.1.3, dateformat@1.0.12)
node-slackr@0.1.4 node_modules/node-slackr
├── coffee-script@1.7.1 (mkdirp@0.3.5)
└── request@2.81.0 (aws-sign2@0.6.0, tunnel-agent@0.6.0, forever-agent@0.6.1, oauth-sign@0.8.2, is-typedarray@1.0.0, caseless@0.12.0, stringstream@0.0.5, safe-buffer@5.0.1, aws4@1.6.0, isstream@0.1.2, json-stringify-safe@5.0.1, extend@3.0.0, performance-now@0.2.0, uuid@3.0.1, qs@6.4.0, combined-stream@1.0.5, mime-types@2.1.15, tough-cookie@2.3.2, form-data@2.1.2, hawk@3.1.3, http-signature@1.1.1, har-validator@4.2.1)
nw-builder@2.2.0 node_modules/nw-builder
├── platform-overrides@1.0.1
├── inherits@2.0.3
├── deprecate@0.1.0
├── rcedit@0.2.0
├── progress@1.1.8
├── semver@2.3.2
├── lodash@2.4.2
├── winresourcer@0.9.0
├── temp@0.7.0 (rimraf@2.2.8)
├── optimist@0.6.1 (minimist@0.0.10)
├── rimraf@2.6.1 (glob@7.1.1)
├── simple-glob@0.1.0 (minimatch@0.2.14, glob@3.2.11)
├── request@2.40.0 (aws-sign2@0.5.0, tunnel-agent@0.4.3, forever-agent@0.5.2, oauth-sign@0.3.0, stringstream@0.0.5, json-stringify-safe@5.0.1, mime-types@1.0.2, qs@1.0.2, node-uuid@1.4.8, tough-cookie@2.3.2, http-signature@0.10.1, form-data@0.1.4, hawk@1.1.1)
├── bluebird@1.2.4
├── tar-fs@0.3.3 (mkdirp@0.3.5, pump@0.3.5, tar-stream@0.4.7)
├── decompress-zip@0.0.8 (q@1.0.1, mkpath@0.1.0, graceful-fs@3.0.11, nopt@2.2.1, readable-stream@1.1.14, touch@0.0.2, binary@0.3.0)
├── update-notifier@0.1.10 (chalk@0.4.0, configstore@0.3.2)
├── graceful-ncp@2.0.0 (ncp@2.0.0, graceful-fs@3.0.11, proxyquire@1.7.11)
├── graceful-fs-extra@1.1.0 (fs-extra@0.30.0, proxyquire@1.7.11)
├── archiver@0.13.1 (buffer-crc32@0.2.13, async@0.9.2, lazystream@0.1.0, readable-stream@1.0.34, tar-stream@1.1.5, glob@4.3.5, zip-stream@0.5.2)
└── plist@1.2.0 (util-deprecate@1.0.2, base64-js@0.0.8, xmldom@0.1.27, xmlbuilder@4.0.0)
lodash@4.17.4 node_modules/lodash
babel-plugin-transform-react-jsx@6.23.0 node_modules/babel-plugin-transform-react-jsx
├── babel-plugin-syntax-jsx@6.18.0
├── babel-helper-builder-react-jsx@6.23.0 (esutils@2.0.2, babel-types@6.23.0)
└── babel-runtime@6.23.0 (regenerator-runtime@0.10.3, core-js@2.4.1)
nw@0.21.3 node_modules/nw
├── file-exists@2.0.0
├── merge@1.2.0
├── semver@5.3.0
├── chalk@1.1.3 (supports-color@2.0.0, escape-string-regexp@1.0.5, ansi-styles@2.2.1, strip-ansi@3.0.1, has-ansi@2.0.0)
├── multimeter@0.1.1 (charm@0.1.2)
├── rimraf@2.6.1 (glob@7.1.1)
├── decompress@3.0.0 (concat-stream@1.6.0, buffer-to-vinyl@1.1.0, vinyl-assign@1.2.1, stream-combiner2@1.1.1, decompress-unzip@3.4.0, decompress-tarbz2@3.1.0, decompress-targz@3.1.0, decompress-tar@3.1.0, vinyl-fs@2.4.4)
└── download@4.4.3 (object-assign@4.1.1, is-url@1.2.2, each-async@1.1.1, stream-combiner2@1.1.1, concat-stream@1.6.0, vinyl@1.2.0, filenamify@1.2.1, ware@1.3.0, read-all-stream@3.1.0, readable-stream@2.2.6, got@5.7.1, caw@1.2.0, gulp-decompress@1.2.0, vinyl-fs@2.4.4)
virustotal.js@0.3.1 node_modules/virustotal.js
└── http-request@0.7.0 (form-data@2.1.2, mmmagic@0.4.5)
npm WARN package.json Peerio@1.6.4 No README data
node-notifier@5.1.2 node_modules/node-notifier
├── semver@5.3.0
├── shellwords@0.1.0
├── growly@1.3.0
└── which@1.2.14 (isexe@2.0.0)
if ! test -d build; then \
sync; \
PATH=`pwd`/tmp/nodejs/bin:$PATH ./node_modules/.bin/gulp build; \
fi
[16:53:59] Using gulpfile ~/fastsrc/peerio-client/src/peerio-client/gulpfile.js
[16:53:59] Starting 'build'...
[16:53:59] Starting 'update-dependendencies'...
events.js:141
throw er; // Unhandled 'error' event
^
Error: spawn cd application/ && npm update ENOENT
at exports._errnoException (util.js:870:11)
at Process.ChildProcess._handle.onexit (internal/child_process.js:178:32)
at onErrorNT (internal/child_process.js:344:16)
at nextTickCallbackWith2Args (node.js:442:9)
at process._tickCallback (node.js:356:17)
at Function.Module.runMain (module.js:443:11)
at startup (node.js:139:18)
at node.js:968:3
make: *** [Makefile:84: client] Error 1
==> ERROR: A failure occurred in build().
Aborting...
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment