1
0
mirror of https://github.com/laurent22/joplin.git synced 2025-01-02 12:47:41 +02:00

fix print function in installer script

fixes #2379
This commit is contained in:
Helmut K. C. Tessarek 2020-01-27 03:40:29 -05:00
parent 5136e7a0e0
commit a4ccd2d43a
No known key found for this signature in database
GPG Key ID: BE0985349D44DD00

View File

@ -11,7 +11,7 @@ SILENT=false
print() { print() {
if [[ "$SILENT" == false ]] ; then if [[ "$SILENT" == false ]] ; then
echo $1 echo "$1"
fi fi
} }