Skip to content

Commit

Permalink
attempt to fix "unhashable type: 'dict'" error
Browse files Browse the repository at this point in the history
  • Loading branch information
capsulecorplab committed Sep 30, 2024
1 parent 680c49d commit b04de47
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions playbook.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -417,17 +417,17 @@
- install_doctools

vars:
asciidoctor_version: 2.0.18
public_suffix_version: 5.1.1
css_parser_version: 1.17.1
asciidoctor_version: "2.0.18"
public_suffix_version: "5.1.1"
css_parser_version: "1.17.1"

tasks:
- name: Install Ruby
apt:
name: ruby-full
update_cache: yes
- name: Run gem install for asciidoctor
shell:
shell:
cmd: "gem install asciidoctor -v {{ asciidoctor_version }}"
- name: Get asciidoctor version
shell: asciidoctor --version | grep Asciidoctor | awk '{ print $2 }'
Expand All @@ -451,7 +451,7 @@
cmd: "gem install css_parser -v {{ css_parser_version }}"
- name: Install PlantUML and PDF support
shell:
cmd: gem install asciidoctor-diagram rghost hexapdf text-hyphen rouge pygments.rb coderay asciidoctor-pdf
cmd: "gem install asciidoctor-diagram rghost hexapdf text-hyphen rouge pygments.rb coderay asciidoctor-pdf"

-
# install m30pm
Expand Down

0 comments on commit b04de47

Please sign in to comment.