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
|
- repo: https://git.a-lec.org/echolib/gsl/-/issues
|
||||||
- Contact xmpp: im@echolib.re
|
- 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
|
### Fix
|
||||||
- Valid style for img: width & height in one style=""
|
- Valid style for img: width & height in one style=""
|
||||||
|
|
||||||
|
|
2
control
2
control
|
@ -1,5 +1,5 @@
|
||||||
Package: egsl
|
Package: egsl
|
||||||
Version: 0.0.91
|
Version: 0.0.92
|
||||||
Section: custom
|
Section: custom
|
||||||
Priority: optional
|
Priority: optional
|
||||||
Architecture: all
|
Architecture: all
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
## [0.0.91]
|
## [0.0.92]
|
||||||
|
|
||||||
## Please, see help (and documentations in help folder)
|
## Please, see help (and documentations in help folder)
|
||||||
|
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
# Version: 0.0.91
|
# Version: 0.0.92
|
||||||
# file: gsl
|
# file: gsl
|
||||||
# Folder: /usr/local/bin
|
# Folder: /usr/local/bin
|
||||||
# By echolib (XMPP: im@echolib.re)
|
# 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
|
- repo: https://git.a-lec.org/echolib/gsl/-/issues
|
||||||
- Contact xmpp: im@echolib.re
|
- 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
|
### Fix
|
||||||
- Valid style for img: width & height in one style=""
|
- 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)
|
## Please, see help (and documentations in help folder)
|
||||||
|
|
||||||
|
|
|
@ -219,10 +219,12 @@ if [[ "$gsl_force_make" ]];then
|
||||||
else
|
else
|
||||||
# if file exists (value is true)
|
# if file exists (value is true)
|
||||||
if [[ "$gsl_srv_wip_file" ]];then
|
if [[ "$gsl_srv_wip_file" ]];then
|
||||||
gsl__logs_print -w -g -M \
|
if (( $article_Status_chk == $article_Status_wip ));then
|
||||||
"WIP: Already done ; Use -F to force" \
|
gsl__logs_print -w -g -M \
|
||||||
"$gsl_srv_post_wip"
|
"WIP: Already done ; Use -F to force" \
|
||||||
unset gsl_do_make
|
"$gsl_srv_post_wip"
|
||||||
|
unset gsl_do_make
|
||||||
|
fi
|
||||||
fi
|
fi
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue