Updates to install scripts

This commit is contained in:
root 2018-12-25 10:14:51 +01:00
parent cac9c3ad3b
commit c3f5e6a628
3 changed files with 2 additions and 3 deletions

View file

@ -2,7 +2,7 @@
[Mailtrain](http://mailtrain.org) is a self hosted newsletter application built on Node.js (v10+) and MySQL (v8+) or MariaDB (v10+). [Mailtrain](http://mailtrain.org) is a self hosted newsletter application built on Node.js (v10+) and MySQL (v8+) or MariaDB (v10+).
![](http://mailtrain.org/mailtrain.png) ![](https://mailtrain.org/mailtrain.png)
## Features ## Features

View file

@ -92,7 +92,7 @@ EOT
# Install required node packages # Install required node packages
for idx in client shared server zone-mta; do for idx in client shared server zone-mta; do
(cd $idx && npm --unsafe-perm install) (cd $idx && npm install)
done done
(cd client && npm run build) (cd client && npm run build)

View file

@ -1,5 +1,4 @@
#!/bin/bash #!/bin/bash
set -x
# This installation script works on CentOS 7 # This installation script works on CentOS 7
# Run as root! # Run as root!