-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Pinned the Antigen version to the 2.0.2 release. Later versions suffer from the following bug: zsh-users/antigen#583
- Loading branch information
Showing
4 changed files
with
61 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,15 @@ | ||
--- | ||
# Antigen version number | ||
antigen_version: '2.0.2' | ||
|
||
# SHA256 sum for the redistributable package | ||
antigen_redis_sha256sum: 'f47ec933b32c578abe8cb39b24e0ddd114ef5cc01b3c05bcb634859ead31493f' | ||
|
||
# Should Oh-My-Zsh be installed with Antigen (doesn't call `antigen use`) | ||
antigen_install_oh_my_zsh: yes | ||
|
||
# Mirror location for Antigen download | ||
antigen_redis_mirror: 'https://github.com/zsh-users/antigen/releases/download/v{{ antigen_version }}' | ||
|
||
# Directory to store files downloaded for Antigen installation on the remote box | ||
antigen_download_dir: "{{ x_ansible_download_dir | default(ansible_env.HOME + '/.ansible/tmp/downloads') }}" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,10 @@ | ||
--- | ||
# vars file for ansible_role_antigen | ||
# The root folder of this Antigen installation | ||
antigen_home: '~/.antigen' | ||
|
||
# File name for the Antigen redistributable installation file | ||
antigen_redis_filename: 'v{{ antigen_version }}.tar.gz' | ||
|
||
# Local file name for the Antigen redistributable installation file (needs to | ||
# have the package name to avoid conflicts) | ||
antigen_local_filename: 'antigen-{{ antigen_version }}.tar.gz' |