We truncated the diff of some files because they were too big.
If you want to see the full diff for every file, click here.
Changes of Revision 17
buildroundcubemailtarball.sh
Changed
x
1
2
LESSC=~/node_modules/less/bin/lessc
3
fi
4
5
+if ! -f $LESSC ; then
6
+ echo "Missing lessc"
7
+ exit 1
8
+fi
9
+
10
11
ROOT_DIR=$(pwd)
12
13
14
"pear/net_smtp": "~1.10.0",
15
"pear/crypt_gpg": "~1.6.3",
16
"pear/net_sieve": "~1.4.5",
17
+ "roundcube/plugin-installer": "~0.2.0",
18
"roundcube/rtf-html-php": "~2.1",
19
"masterminds/html5": "~2.7.0",
20
"endroid/qr-code": "~1.6.5",
21
22
# Run composer and other install processes
23
mv composer.json $NAME/composer.json
24
pushd $NAME
25
+# Avoid running the roundcubemail plugin installer (we're not installing on this system)
26
composer install
27
- # composer dump autoload?
28
bin/install-jsdeps.sh
29
30
# May require an "npm install less" and "npm install less-plugin-clean-css"
31
roundcubemail-1.5.3.tar.gz
Changed