obs-utils-mge:tip

Last commit made on 2024-05-09
Get this branch:
git clone -b tip https://git.launchpad.net/obs-utils-mge
Only Mark Grant can upload to this branch. If you are Mark Grant please log in for upload directions.

Branch merges

Branch information

Name:
tip
Repository:
lp:obs-utils-mge

Recent commits

c13dbef... by Mark Grant

git: Correct reasoning in gitignore, empty not untracked

Signed-off-by: Mark Grant <email address hidden>

3cc4e4b... by Mark Grant

v1.2.1

Signed-off-by: Mark Grant <email address hidden>

b6e3fc1... by Mark Grant

at: Update ChangeLog and NEWS for new release

Signed-off-by: Mark Grant <email address hidden>

d019126... by Mark Grant

v1.2.1-rc1

Correct version number.

Fixes: a35d0097 ("v1.2.0-rc1")
Signed-off-by: Mark Grant <email address hidden>

a35d009... by Mark Grant

v1.2.0-rc1

Signed-off-by: Mark Grant <email address hidden>

4285fe8... by Mark Grant

bash: man: Drop.sh extension from scripts in $PATH

It is a common standard that executables in $PATH should not have a
filename extension. This is so that the program can be re-written in
another language with no change of name to the user.

Signed-off-by: Mark Grant <email address hidden>

bf36adb... by Mark Grant

bash: Assign array to array

Found by shellcheck:-
SC2124 (warning): Assigning an array to a string! Assign as array, or use * instead of @ to concatenate.

Link: https://www.shellcheck.net/wiki/SC2124
Signed-off-by: Mark Grant <email address hidden>

b73bffc... by Mark Grant

bash: Do not warn of unreachable commands in trap functions

Found by shellcheck:-
SC2317 (info): Command appears to be unreachable. Check usage (or ignore if invoked indirectly)

The above warning is a false positive when it refers to a trap function.

Link: https://www.shellcheck.net/wiki/SC2317
Signed-off-by: Mark Grant <email address hidden>

c43d8c4... by Mark Grant

bash: Use double quotes to prevent globbing and word splitting

Found by shellcheck:-
SC2086 (info): Double quote to prevent globbing and word splitting.

Link: https://www.shellcheck.net/wiki/SC2086
Signed-off-by: Mark Grant <email address hidden>

8de8fbe... by Mark Grant

bash: Remove unused variable

shellcheck found:-
SC2034 (warning): outputprefix appears unused. Verify use (or export if used externally).
Remove it.

Link: https://www.shellcheck.net/wiki/SC2034
Signed-off-by: Mark Grant <email address hidden>