Skip to content

Commit

Permalink
Resolves Jguer#115. Ignore aur/package on install
Browse files Browse the repository at this point in the history
  • Loading branch information
Jguer committed Jan 31, 2018
1 parent 2f5c4df commit fb220d4
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 7 deletions.
16 changes: 9 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,8 @@ Yay was created with a few objectives in mind and based on the design of [yaourt

### Changelog

#### 2.298
- Adds #115
#### 2.296
- New argument parsing @Morganamilo (check manpage or --help for new
information)
Expand All @@ -58,13 +60,13 @@ Yay was created with a few objectives in mind and based on the design of [yaourt
#### 2.219
- Updated manpage
- Updated --help
- Fixed AUR update fails with large number of packages #59
- Check if package is already in upgrade list and skip it. #60
- Add -V and -h for flag parsing @AnthonyLam
- Prevent file corruption by truncating the files @maximbaz
- Print VCS error details @maximbaz
- Using '-' doesn't raise an error @PietroCarrara
- use Command.Dir in aur.PkgInstall; Fixes #32 #47 @afg984
- Fixed AUR update fails with large number of packages #59
- Check if package is already in upgrade list and skip it. #60
- Add -V and -h for flag parsing @AnthonyLam
- Prevent file corruption by truncating the files @maximbaz
- Print VCS error details @maximbaz
- Using '-' doesn't raise an error @PietroCarrara
- use Command.Dir in aur.PkgInstall; Fixes #32 #47 @afg984
- Suffix YayConf.BuildDir with uid to avoid permission issues @afg984 (Not included in last changelog)

#### 2.200
Expand Down
3 changes: 3 additions & 0 deletions query.go
Original file line number Diff line number Diff line change
Expand Up @@ -248,6 +248,9 @@ func packageSlices(toCheck []string) (aur []string, repo []string, missing []str
}

for _, _pkg := range toCheck {
if i := strings.Index(_pkg, "/"); i != -1 {
_pkg = _pkg[i+1:]
}
pkg := getNameFromDep(_pkg)

_, errdb := dbList.FindSatisfier(_pkg)
Expand Down

0 comments on commit fb220d4

Please sign in to comment.