Skip to content

Commit

Permalink
@latex bibclean refactor - kamangir/bolt#746
Browse files Browse the repository at this point in the history
  • Loading branch information
kamangir committed Jan 1, 2025
1 parent 67351a2 commit 1ab96e0
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 4 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -63,4 +63,4 @@ create a copy of [`sample.env`](./abcli/sample.env) as `.env` and fill in the se

[![pylint](https://github.com/kamangir/awesome-bash-cli/actions/workflows/pylint.yml/badge.svg)](https://github.com/kamangir/awesome-bash-cli/actions/workflows/pylint.yml) [![pytest](https://github.com/kamangir/awesome-bash-cli/actions/workflows/pytest.yml/badge.svg)](https://github.com/kamangir/awesome-bash-cli/actions/workflows/pytest.yml) [![bashtest](https://github.com/kamangir/awesome-bash-cli/actions/workflows/bashtest.yml/badge.svg)](https://github.com/kamangir/awesome-bash-cli/actions/workflows/bashtest.yml) [![PyPI version](https://img.shields.io/pypi/v/abcli.svg)](https://pypi.org/project/abcli/) [![PyPI - Downloads](https://img.shields.io/pypi/dd/abcli)](https://pypistats.org/packages/abcli)

built by 🌀 [`blue_options-4.174.1`](https://github.com/kamangir/awesome-bash-cli), based on 🪄 [`abcli-9.436.1`](https://github.com/kamangir/awesome-bash-cli).
built by 🌀 [`blue_options-4.174.1`](https://github.com/kamangir/awesome-bash-cli), based on 🪄 [`abcli-9.437.1`](https://github.com/kamangir/awesome-bash-cli).
8 changes: 6 additions & 2 deletions abcli/.abcli/plugins/latex/bibclean.sh
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,12 @@ function abcli_latex_bibclean() {
[[ "$do_install" == 1 ]] &&
abcli_latex_install $options

local filename=$2
local filename=${2:-void}

local temp_filename=$abcli_path_temp/bibclean-$(abcli_string_timestamp_short).bib

abcli_eval ,$options \
bibclean $filename
bibclean $filename >$temp_filename

mv -v $temp_filename $filename
}
2 changes: 1 addition & 1 deletion abcli/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

DESCRIPTION = f"{ICON} a language to speak AI."

VERSION = "9.436.1"
VERSION = "9.437.1"

REPO_NAME = "awesome-bash-cli"

Expand Down

0 comments on commit 1ab96e0

Please sign in to comment.