Skip to content

Commit

Permalink
No output if installation is successful
Browse files Browse the repository at this point in the history
  • Loading branch information
dominiksalvet committed Jan 12, 2019
1 parent c6800e2 commit 9704809
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 6 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,10 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/)

The changes not yet present in any release are listed in this section.

### Changed

* No output is generated if the installation is successful.

## 2.2.0 (2018-11-27)

### Added
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ The program is executed after the installation for the first time. Then, **it is
sudo ux430ua-jack-volume
```

## Contribute
## Contributing

See the [*CONTRIBUTING.md*](CONTRIBUTING.md) file for details.

Expand Down
8 changes: 6 additions & 2 deletions debian/copyright
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,14 @@ Upstream-Contact: Dominik Salvet
Source: https://gitlab.com/dominiksalvet/ux430ua-jack-volume

Files: README.md
Copyright: Copyright 2017-2018 Dominik Salvet
Copyright: Copyright 2017-2019 Dominik Salvet
License: MIT

Files: CHANGELOG.md CONTRIBUTING.md
Files: CHANGELOG.md
Copyright: Copyright 2018-2019 Dominik Salvet
License: MIT

Files: CONTRIBUTING.md
Copyright: Copyright 2018 Dominik Salvet
License: MIT

Expand Down
6 changes: 3 additions & 3 deletions make/install-deps
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/bin/sh

#-------------------------------------------------------------------------------
# Copyright 2018 Dominik Salvet
# Copyright 2018-2019 Dominik Salvet
# SPDX-License-Identifier: MIT
# https://gitlab.com/dominiksalvet/ux430ua-jack-volume
#-------------------------------------------------------------------------------
Expand All @@ -12,7 +12,7 @@
#-------------------------------------------------------------------------------

# list of required software
SW_REQUIRED='command echo id apt'
SW_REQUIRED='command echo id apt-get'

# check if some software is missing
for i in $SW_REQUIRED; do
Expand All @@ -36,4 +36,4 @@ if [ "$(id -u)" -ne 0 ]; then
fi

# install the following package to control the jack sound volume level
apt install alsa-tools -y || exit 1
apt-get install alsa-tools -y > /dev/null || exit 1

0 comments on commit 9704809

Please sign in to comment.