mirror of
https://github.com/YunoHost/package_check.git
synced 2024-09-03 20:06:20 +02:00
Minor fixes
This commit is contained in:
parent
4007177ea5
commit
12f0295fdb
2 changed files with 2 additions and 12 deletions
|
@ -872,7 +872,7 @@ then
|
||||||
|
|
||||||
|
|
||||||
# Parse each tests serie
|
# Parse each tests serie
|
||||||
while read tests_serie
|
while read <&3 tests_serie
|
||||||
do
|
do
|
||||||
|
|
||||||
# Initialize the values for this serie of tests
|
# Initialize the values for this serie of tests
|
||||||
|
@ -1020,7 +1020,7 @@ then
|
||||||
# Destroy all snapshots other than snap0
|
# Destroy all snapshots other than snap0
|
||||||
destroy_temporary_snapshot
|
destroy_temporary_snapshot
|
||||||
|
|
||||||
done <<< "$(grep "^;; " "$check_process")"
|
done 3<<< "$(grep "^;; " "$check_process")"
|
||||||
|
|
||||||
# No check_process file. Try to parse the manifest.
|
# No check_process file. Try to parse the manifest.
|
||||||
else
|
else
|
||||||
|
|
|
@ -1188,16 +1188,6 @@ CHECK_CHANGE_URL () {
|
||||||
ECHO_FORMAT "\nPreliminary install...\n" "white" "bold" clog
|
ECHO_FORMAT "\nPreliminary install...\n" "white" "bold" clog
|
||||||
STANDARD_SETUP_APP
|
STANDARD_SETUP_APP
|
||||||
|
|
||||||
# Wait for next release...
|
|
||||||
LXC_START "yunohost app --help | grep --quiet change-url"
|
|
||||||
if [ $? -ne 0 ]
|
|
||||||
then
|
|
||||||
ECHO_FORMAT "change-url is only available on testing or unstable...\n" "red" "bold"
|
|
||||||
RESULT_change_url=0
|
|
||||||
return 0
|
|
||||||
fi
|
|
||||||
# ...
|
|
||||||
|
|
||||||
# Check if the install had work
|
# Check if the install had work
|
||||||
if [ $yunohost_result -ne 0 ]
|
if [ $yunohost_result -ne 0 ]
|
||||||
then
|
then
|
||||||
|
|
Loading…
Add table
Reference in a new issue