Skip to content

Commit

Permalink
Fix #60: Move the installer to scripts/
Browse files Browse the repository at this point in the history
  • Loading branch information
pschmitt committed Nov 15, 2021
1 parent 3c3a223 commit c4d3049
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/installer.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ jobs:
export ZINIT_BRANCH="$GITHUB_REF_SLUG"
export NO_INPUT=true
sh -x ./doc/install.sh
sh -x ./scripts/install.sh
- name: Install zinit (w/o annexes)
if: matrix.annexes == 'without-annexes'
Expand All @@ -50,7 +50,7 @@ jobs:
export NO_INPUT=true
export NO_ANNEXES=true
sh -x ./doc/install.sh
sh -x ./scripts/install.sh
- name: Upload zshrc and zinit files
uses: actions/upload-artifact@v2
Expand Down Expand Up @@ -104,7 +104,7 @@ jobs:
export ZINIT_BRANCH="$GITHUB_REF_SLUG"
export NO_INPUT=true
./doc/install.sh
./scripts/install.sh
- name: Update zinit from ${{ github.event.before }} to ${{ github.sha }}
run: |
Expand All @@ -113,4 +113,4 @@ jobs:
export ZINIT_BRANCH="$GITHUB_REF_SLUG"
export NO_INPUT=true
./doc/install.sh
./scripts/install.sh
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,7 @@ read it to get the most out of Zinit.
The easiest way to install Zinit is to execute:

```zsh
sh -c "$(curl -fsSL https://raw.githubusercontent.com/zdharma-continuum/zinit/master/doc/install.sh)"
sh -c "$(curl -fsSL https://raw.githubusercontent.com/zdharma-continuum/zinit/master/scripts/install.sh)"
```

This will install Zinit in `~/.zinit/bin`.
Expand Down
File renamed without changes.

0 comments on commit c4d3049

Please sign in to comment.