mirror of
https://github.com/YunoHost/yunohost.git
synced 2024-09-03 20:06:10 +02:00
Fix unbound variable in ynh_script_progression
This commit is contained in:
parent
0b132252c4
commit
676973a18e
1 changed files with 1 additions and 1 deletions
|
@ -250,7 +250,7 @@ ynh_script_progression() {
|
||||||
weight=${weight:-1}
|
weight=${weight:-1}
|
||||||
|
|
||||||
# Always activate time when running inside CI tests
|
# Always activate time when running inside CI tests
|
||||||
if [ $PACKAGE_CHECK_EXEC -eq 1 ]; then
|
if [ ${PACKAGE_CHECK_EXEC:-0} -eq 1 ]; then
|
||||||
time=${time:-1}
|
time=${time:-1}
|
||||||
else
|
else
|
||||||
time=${time:-0}
|
time=${time:-0}
|
||||||
|
|
Loading…
Add table
Reference in a new issue