mirror of
https://github.com/YunoHost-Apps/petrolette_ynh.git
synced 2024-09-03 19:56:26 +02:00
Testing (#11)
* fix home unbound error * update version Co-authored-by: Tobias Ollive <tobias.ollive@utc.fr> Co-authored-by: Yunohost-Bot <>
This commit is contained in:
parent
f36feef942
commit
d2c05808f8
4 changed files with 5 additions and 5 deletions
|
@ -17,7 +17,7 @@ If you don't have YunoHost, please consult [the guide](https://yunohost.org/#/in
|
||||||
|
|
||||||
The news reader that doesn't know you
|
The news reader that doesn't know you
|
||||||
|
|
||||||
**Shipped version:** 1.3.5~ynh1
|
**Shipped version:** 1.3.5~ynh2
|
||||||
|
|
||||||
**Demo:** https://petrolette.space
|
**Demo:** https://petrolette.space
|
||||||
|
|
||||||
|
|
|
@ -13,7 +13,7 @@ Si vous n'avez pas YunoHost, regardez [ici](https://yunohost.org/#/install) pour
|
||||||
|
|
||||||
La page d'actu qui ne sait rien de toi
|
La page d'actu qui ne sait rien de toi
|
||||||
|
|
||||||
**Version incluse :** 1.3.5~ynh1
|
**Version incluse :** 1.3.5~ynh2
|
||||||
|
|
||||||
**Démo :** https://petrolette.space
|
**Démo :** https://petrolette.space
|
||||||
|
|
||||||
|
|
|
@ -12,7 +12,7 @@
|
||||||
"demo": "https://petrolette.space",
|
"demo": "https://petrolette.space",
|
||||||
"code": "https://framagit.org/yphil/petrolette"
|
"code": "https://framagit.org/yphil/petrolette"
|
||||||
},
|
},
|
||||||
"version": "1.3.5~ynh1",
|
"version": "1.3.5~ynh2",
|
||||||
"license": "AGPL-3.0-only",
|
"license": "AGPL-3.0-only",
|
||||||
"maintainer": [{
|
"maintainer": [{
|
||||||
"name": "oiseauroch.",
|
"name": "oiseauroch.",
|
||||||
|
|
|
@ -88,11 +88,11 @@ pushd $final_path
|
||||||
sed -i "/HTTP_PORT/s/[0-9]*[0-9]/$port/" package.json
|
sed -i "/HTTP_PORT/s/[0-9]*[0-9]/$port/" package.json
|
||||||
sed -i "/HTTPS_PORT/s/[0-9]*[0-9]/$https_port/" package.json
|
sed -i "/HTTPS_PORT/s/[0-9]*[0-9]/$https_port/" package.json
|
||||||
|
|
||||||
TMP_HOME=$HOME
|
[[ -v HOME ]] && TMP_HOME=$HOME
|
||||||
HOME=$(pwd)
|
HOME=$(pwd)
|
||||||
ynh_use_nodejs
|
ynh_use_nodejs
|
||||||
ynh_npm install
|
ynh_npm install
|
||||||
HOME=$TMP_HOME
|
[[ -v TMP_HOME ]] && HOME=$TMP_HOME || unset HOME
|
||||||
popd
|
popd
|
||||||
|
|
||||||
#=================================================
|
#=================================================
|
||||||
|
|
Loading…
Reference in a new issue