Skip to content

Commit

Permalink
Fixed for Ansible 2
Browse files Browse the repository at this point in the history
Escaping behaviour has changed for unquoted variables.
  • Loading branch information
freemanjp committed Aug 14, 2016
1 parent 34a2fea commit 7113c42
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion vars/editions/community.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,4 @@ intellij_startup_wm_class: jetbrains-idea-ce
intellij_desktop_filename: jetbrains-idea-ce.desktop

# Name of the directory where user specific settings are stored
intellij_user_dir: .IdeaIC{{ intellij_version | regex_replace('^([0-9]+\.[0-9]+)(\..*)?$', '\\1') }}
intellij_user_dir: ".IdeaIC{{ intellij_version | regex_replace('^([0-9]+\\.[0-9]+)(\\..*)?$', '\\1') }}"
2 changes: 1 addition & 1 deletion vars/editions/ultimate.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,4 @@ intellij_startup_wm_class: jetbrains-idea
intellij_desktop_filename: jetbrains-idea.desktop

# Name of the directory where user specific settings are stored
intellij_user_dir: .IntelliJIdea{{ intellij_version | regex_replace('^([0-9]+\.[0-9]+)(\..*)?$', '\\1') }}
intellij_user_dir: ".IntelliJIdea{{ intellij_version | regex_replace('^([0-9]+\\.[0-9]+)(\\..*)?$', '\\1') }}"

0 comments on commit 7113c42

Please sign in to comment.