Skip to content

Commit

Permalink
Add simple help to scripts/update_apt_package_in_package_list.sh
Browse files Browse the repository at this point in the history
  • Loading branch information
tkilias committed Feb 23, 2024
1 parent ffa55ea commit b8e719e
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions scripts/update_apt_package_in_package_list.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,12 @@ set -o errexit
set -o nounset
set -o pipefail

if [ $# -eq 0 ];
then
echo '"Package|Installed|Candidate" SEARCH_DIRECTORY REPLACE'
exit 1
fi

LIST_NEWEST_VERSION_OUTPUT=$1 # Package|Installed|Candidate
SEARCH_DIRECTORY=$2
REPLACE=$3
Expand Down

0 comments on commit b8e719e

Please sign in to comment.