diff --git a/CHANGELOG.md b/CHANGELOG.md index 3f84e2d..816d2e7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,11 @@ STL: Statique Littérateur - Changelog: https://git.a-lec.org/echolib/stl/-/blob/main/CHANGELOG.md - License: https://git.a-lec.org/echolib/stl/-/blob/main/LICENSE +## [0.2.11] +### publish +- ensure basis directories (files,images,template) are created + + ## [0.2.10] ### read - Better read option + autocompletion diff --git a/README.md b/README.md index bb94e97..d6c91f5 100644 --- a/README.md +++ b/README.md @@ -75,7 +75,7 @@ Lorsque votre site prévisualisé sur WIP vous plaît, vous pouvez alors synchroniser le dossier WIP sur WWW grâce à la commande : ``` -stl sync +stl publish (ARTICLE) ``` Note : cette commande crée automatiquement le flux RSS dans WIP avant diff --git a/control b/control index 07b5d50..dbdb9dc 100644 --- a/control +++ b/control @@ -1,5 +1,5 @@ Package: estl -Version: 0.2.10 +Version: 0.2.11 Section: custom Priority: optional Architecture: all diff --git a/help/CHANGELOG.md b/help/CHANGELOG.md index 3f84e2d..816d2e7 100644 --- a/help/CHANGELOG.md +++ b/help/CHANGELOG.md @@ -6,6 +6,11 @@ STL: Statique Littérateur - Changelog: https://git.a-lec.org/echolib/stl/-/blob/main/CHANGELOG.md - License: https://git.a-lec.org/echolib/stl/-/blob/main/LICENSE +## [0.2.11] +### publish +- ensure basis directories (files,images,template) are created + + ## [0.2.10] ### read - Better read option + autocompletion diff --git a/help/README.md b/help/README.md index bb94e97..d6c91f5 100644 --- a/help/README.md +++ b/help/README.md @@ -75,7 +75,7 @@ Lorsque votre site prévisualisé sur WIP vous plaît, vous pouvez alors synchroniser le dossier WIP sur WWW grâce à la commande : ``` -stl sync +stl publish (ARTICLE) ``` Note : cette commande crée automatiquement le flux RSS dans WIP avant diff --git a/usr/local/bin/stl b/usr/local/bin/stl index b062067..bec2d68 100755 --- a/usr/local/bin/stl +++ b/usr/local/bin/stl @@ -1,5 +1,5 @@ #!/bin/bash -# Version: 0.2.10 +# Version: 0.2.11 # Name: Statique Littérateur # Type: Executable # Description: Static website generator @@ -13,7 +13,7 @@ # funny stats #------------ # scripts files: 14 -# app lines: 4712 +# app lines: 4715 # app functions: 106 # lines: 146 # functions: 4 diff --git a/var/lib/stl/help/CHANGELOG.md b/var/lib/stl/help/CHANGELOG.md index 3f84e2d..816d2e7 100644 --- a/var/lib/stl/help/CHANGELOG.md +++ b/var/lib/stl/help/CHANGELOG.md @@ -6,6 +6,11 @@ STL: Statique Littérateur - Changelog: https://git.a-lec.org/echolib/stl/-/blob/main/CHANGELOG.md - License: https://git.a-lec.org/echolib/stl/-/blob/main/LICENSE +## [0.2.11] +### publish +- ensure basis directories (files,images,template) are created + + ## [0.2.10] ### read - Better read option + autocompletion diff --git a/var/lib/stl/help/README.md b/var/lib/stl/help/README.md index bb94e97..d6c91f5 100644 --- a/var/lib/stl/help/README.md +++ b/var/lib/stl/help/README.md @@ -75,7 +75,7 @@ Lorsque votre site prévisualisé sur WIP vous plaît, vous pouvez alors synchroniser le dossier WIP sur WWW grâce à la commande : ``` -stl sync +stl publish (ARTICLE) ``` Note : cette commande crée automatiquement le flux RSS dans WIP avant diff --git a/var/lib/stl/scripts/manage__publish b/var/lib/stl/scripts/manage__publish index 504c7e0..643e7f5 100644 --- a/var/lib/stl/scripts/manage__publish +++ b/var/lib/stl/scripts/manage__publish @@ -9,7 +9,7 @@ #------------ # funny stats #------------ -# lines: 245 +# lines: 248 # functions: 5 #----------------------------------------------------------------------- @@ -32,15 +32,18 @@ fi # Sync basis images, files, template folders from wip to www sync__files "$domain_dir_wip_images/" \ "$domain_dir_www_images/" \ - "WWW" + "WWW" \ + "$domain_dir_wip_images" sync__files "$domain_dir_wip_files/" \ "$domain_dir_www_files/" \ - "WWW" + "WWW" \ + "$domain_dir_wip_files" sync__files "$domain_dir_wip_tpl/" \ "$domain_dir_www_tpl/" \ - "WWW" + "WWW" \ + "$domain_dir_www_tpl" case "$2" in all)