mirror of
https://github.com/the-djmaze/snappymail.git
synced 2024-12-26 09:03:48 +08:00
[snappymail] Some build fixes
Not an expert on the snappy build system, but rollup doesn't seem to be used anywhere, so no need to check for its presence. Also, I had to replace "node-fs" with "fs" to build a .tar.gz.
This commit is contained in:
parent
05af650a29
commit
fc83b71a30
2 changed files with 3 additions and 1 deletions
|
@ -85,10 +85,12 @@ if (!$gulp) {
|
|||
exit('gulp not installed, run as root: npm install --global gulp-cli');
|
||||
}
|
||||
|
||||
/*
|
||||
$rollup = trim(`which rollup`);
|
||||
if (!$rollup) {
|
||||
exit('rollup not installed, run as root: npm install --global rollup');
|
||||
}
|
||||
*/
|
||||
|
||||
// Arch User Repository
|
||||
// https://aur.archlinux.org/packages/snappymail/
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
/* RainLoop Webmail (c) RainLoop Team | Licensed under AGPL 3 */
|
||||
const gulp = require('gulp');
|
||||
const del = require('del');
|
||||
const fs = require('node-fs');
|
||||
const fs = require('fs');
|
||||
|
||||
const { config } = require('./config');
|
||||
|
||||
|
|
Loading…
Reference in a new issue