diff options
| author | Luke Smith <luke@lukesmith.xyz> | 2020-08-04 10:13:28 -0400 |
|---|---|---|
| committer | Luke Smith <luke@lukesmith.xyz> | 2020-08-04 10:13:28 -0400 |
| commit | ae185dc3b18d470c664bc80b10ae797ec42786a8 (patch) | |
| tree | e434ff9aa4e9be14a4d64a393cf5d47d005611dd /.local/bin/ifinstalled | |
| parent | 20a03e90626f299218c497b9f407a779c8a6220c (diff) | |
| parent | 4589bb0a8b04473ccc0c027c0ba835acdf289689 (diff) | |
| download | eibhear-ae185dc3b18d470c664bc80b10ae797ec42786a8.tar.gz eibhear-ae185dc3b18d470c664bc80b10ae797ec42786a8.tar.zst eibhear-ae185dc3b18d470c664bc80b10ae797ec42786a8.zip | |
Merge branch 'master' of github.com:LukeSmithxyz/voidrice into master
Diffstat (limited to '.local/bin/ifinstalled')
| -rwxr-xr-x | .local/bin/ifinstalled | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.local/bin/ifinstalled b/.local/bin/ifinstalled index e2013a4..be3ac24 100755 --- a/.local/bin/ifinstalled +++ b/.local/bin/ifinstalled @@ -6,6 +6,6 @@ # various other scripts for clarity's sake. for x in "$@";do - pacman -Qq "$x" 2>/dev/null || + pacman -Qq "$x" >/dev/null 2>&1 || { notify-send "📦 $x" "must be installed for this function." && exit 1 ;} done |
