Skip to content

Commit

Permalink
fix: fix ctags install in Ubuntu
Browse files Browse the repository at this point in the history
  • Loading branch information
phodal committed Mar 1, 2021
1 parent a15247d commit 9b70649
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 12 deletions.
3 changes: 1 addition & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,7 @@ jobs:
- name: Install ctags on Linux
if: matrix.os == 'ubuntu-latest'
run: |
sudo apt-get update
sudo apt-get install exuberant-ctags
sudo snap install universal-ctags
- name: Install ctags on macOS
if: matrix.os == 'macOS-latest'
Expand Down
3 changes: 1 addition & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,7 @@ jobs:

- name: Install ctags on Linux
run: |
sudo apt-get update
sudo apt-get install exuberant-ctags
sudo snap install universal-ctags
- name: Zip Plugins
run: |
Expand Down
3 changes: 1 addition & 2 deletions DEVELOPMENT.md
Original file line number Diff line number Diff line change
Expand Up @@ -93,8 +93,7 @@ just tests
Ubuntu

```
sudo apt-get update
sudo apt-get install exuberant-ctags
sudo snap install universal-ctags
```

macOS
Expand Down
7 changes: 1 addition & 6 deletions plugins/coco_struct_analysis/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -43,12 +43,7 @@ fn show_ctags_install_help() {
println!(
"install ctags on Ubuntu:
sudo apt-get update
sudo apt-get install exuberant-ctags
install with Snap:
sudo snap install universal-ctags*.snap --dangerous
sudo snap install universal-ctags
"
);
}
Expand Down

0 comments on commit 9b70649

Please sign in to comment.