mirror of
https://github.com/YunoHost/package_check.git
synced 2024-09-03 20:06:20 +02:00
18 lines
330 B
Bash
18 lines
330 B
Bash
OUTPUTD="debug_output"
|
|
|
|
SETUP_APP () {
|
|
sudo yunohost app --debug install $APP_CHECK -a "$MANIFEST_ARGS" > $OUTPUTD 2>&1
|
|
}
|
|
|
|
REMOVE_APP () {
|
|
# Il faut choper le label pour savoir quoi supprimer...
|
|
|
|
}
|
|
|
|
TESTING_PROCESS () {
|
|
# Lancement des tests
|
|
echo "PROCESS_NAME=$PROCESS_NAME"
|
|
echo "MANIFEST_ARGS=$MANIFEST_ARGS"
|
|
|
|
SETUP_APP
|
|
}
|