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:
parent
ee4372cab2
commit
8e636d4011
4 changed files with 11 additions and 1 deletions
|
@ -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.
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -1,5 +1,7 @@
|
|||
#!/bin/bash
|
||||
|
||||
set -eu
|
||||
|
||||
#=================================================
|
||||
# IMPORT GENERIC HELPERS
|
||||
#=================================================
|
||||
|
|
|
@ -1,5 +1,7 @@
|
|||
#!/bin/bash
|
||||
|
||||
set -u
|
||||
|
||||
#=================================================
|
||||
# GENERIC STARTING
|
||||
#=================================================
|
||||
|
|
Loading…
Reference in a new issue