Skip to content

Commit

Permalink
Option file
Browse files Browse the repository at this point in the history
  • Loading branch information
matteocorti committed Oct 1, 2023
1 parent d3b9329 commit 575f295
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 3 deletions.
2 changes: 2 additions & 0 deletions NEWS.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
* 2023-10-01, Version 2.3.0
* Options can be specified in the ```~/.update.sh.rc``` file (no documentation yet)
* 2023-09-04, Version 2.2.0
* Added ```--no-*``` options to skip updates
* 2023-08-01, Version 2.1.0
Expand Down
2 changes: 1 addition & 1 deletion RELEASE_NOTES.md
Original file line number Diff line number Diff line change
@@ -1 +1 @@
Added ```--no-*``` options to skip updates
Options can be specified in the ```~/.update.sh.rc``` file (no documentation yet)
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2.2.0
2.3.0
8 changes: 7 additions & 1 deletion update.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

# Copyright (c) 2018-2023 Matteo Corti <matteo@corti.li>

VERSION=2.2.0
VERSION=2.3.0

VERBOSE=""
CLEAR=""
Expand Down Expand Up @@ -73,6 +73,12 @@ usage() {

ALL=1

# source the settings file
if [ -r "${HOME}/.update.sh.rc" ] ; then
# shellcheck disable=SC1091
. "${HOME}/.update.sh.rc"
fi

while true; do

case "$1" in
Expand Down

0 comments on commit 575f295

Please sign in to comment.