fix: make -F
This commit is contained in:
parent
933bdd7566
commit
3c08cb939b
|
@ -4,7 +4,12 @@ GSL changes from releases. You can send an issue :
|
|||
- repo: https://git.a-lec.org/echolib/gsl/-/issues
|
||||
- Contact xmpp: im@echolib.re
|
||||
|
||||
## [0.0.91]
|
||||
## [0.0.92]
|
||||
### Fix
|
||||
- make: must not use -F if article has changed
|
||||
|
||||
|
||||
## [0.0.92]
|
||||
### Fix
|
||||
- Valid style for img: width & height in one style=""
|
||||
|
||||
|
|
2
control
2
control
|
@ -1,5 +1,5 @@
|
|||
Package: egsl
|
||||
Version: 0.0.91
|
||||
Version: 0.0.92
|
||||
Section: custom
|
||||
Priority: optional
|
||||
Architecture: all
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
## [0.0.91]
|
||||
## [0.0.92]
|
||||
|
||||
## Please, see help (and documentations in help folder)
|
||||
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
#!/bin/bash
|
||||
# Version: 0.0.91
|
||||
# Version: 0.0.92
|
||||
# file: gsl
|
||||
# Folder: /usr/local/bin
|
||||
# By echolib (XMPP: im@echolib.re)
|
||||
|
|
|
@ -4,7 +4,12 @@ GSL changes from releases. You can send an issue :
|
|||
- repo: https://git.a-lec.org/echolib/gsl/-/issues
|
||||
- Contact xmpp: im@echolib.re
|
||||
|
||||
## [0.0.91]
|
||||
## [0.0.92]
|
||||
### Fix
|
||||
- make: must not use -F if article has changed
|
||||
|
||||
|
||||
## [0.0.92]
|
||||
### Fix
|
||||
- Valid style for img: width & height in one style=""
|
||||
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
## [0.0.91]
|
||||
## [0.0.92]
|
||||
|
||||
## Please, see help (and documentations in help folder)
|
||||
|
||||
|
|
|
@ -219,12 +219,14 @@ if [[ "$gsl_force_make" ]];then
|
|||
else
|
||||
# if file exists (value is true)
|
||||
if [[ "$gsl_srv_wip_file" ]];then
|
||||
if (( $article_Status_chk == $article_Status_wip ));then
|
||||
gsl__logs_print -w -g -M \
|
||||
"WIP: Already done ; Use -F to force" \
|
||||
"$gsl_srv_post_wip"
|
||||
unset gsl_do_make
|
||||
fi
|
||||
fi
|
||||
fi
|
||||
|
||||
! [[ "$gsl_do_make" ]] && return
|
||||
|
||||
|
|
Loading…
Reference in New Issue