1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/turtl_ynh.git synced 2024-09-03 20:26:35 +02:00

Corrections to make CI happy

This commit is contained in:
Luc Didry 2017-08-11 14:34:22 +02:00
parent ee4372cab2
commit 8e636d4011
4 changed files with 11 additions and 1 deletions

View file

@ -17,7 +17,13 @@
------------------------------
## What's Turtl
Turtl lets you take notes, bookmark websites, and store documents for sensitive projects.
From sharing passwords with your coworkers to tracking research on an article you're writing, Turtl keeps it all safe from everyone but you and those you share with.
You will need apps to use Turtl. Get them from <https://turtlapp.com/download/>.
## Nota bene
The `rethinkdb_2.3.6_armhf.deb` debian package in `conf` directory of this repository is a cross-compiled RethinkDB package for ARM architecture since no ARM package is provided by RethinkDB.

View file

@ -412,7 +412,7 @@ ynh_make_valid_dbid () {
ynh_exit_properly () {
exit_code=$?
if [ "$exit_code" -eq 0 ]; then
exit 0 # Exit without error if the script ended correctly
ynh_die "" 0 # Exit without error if the script ended correctly
fi
trap '' EXIT # Ignore new exit signals

View file

@ -1,5 +1,7 @@
#!/bin/bash
set -eu
#=================================================
# IMPORT GENERIC HELPERS
#=================================================

View file

@ -1,5 +1,7 @@
#!/bin/bash
set -u
#=================================================
# GENERIC STARTING
#=================================================