mirror of
https://github.com/moparisthebest/pacman
synced 2024-11-17 14:55:07 -05:00
Merge remote-tracking branch 'dave/scripts-fixup'
This commit is contained in:
commit
dffff9659b
@ -20,7 +20,6 @@
|
|||||||
#
|
#
|
||||||
|
|
||||||
# bash options
|
# bash options
|
||||||
set -o nounset
|
|
||||||
set -o errexit
|
set -o errexit
|
||||||
|
|
||||||
# gettext initialization
|
# gettext initialization
|
||||||
@ -130,7 +129,7 @@ esac
|
|||||||
|
|
||||||
if (( $# != 2 )); then
|
if (( $# != 2 )); then
|
||||||
usage
|
usage
|
||||||
exit 0
|
exit 1
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if [[ ! -f $1 ]]; then
|
if [[ ! -f $1 ]]; then
|
||||||
|
@ -609,8 +609,12 @@ while (( $# )); do
|
|||||||
shift
|
shift
|
||||||
done
|
done
|
||||||
|
|
||||||
|
|
||||||
REPO_DB_FILE=${args[0]}
|
REPO_DB_FILE=${args[0]}
|
||||||
|
if [[ -z $REPO_DB_FILE ]]; then
|
||||||
|
usage
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
|
||||||
LOCKFILE=$REPO_DB_FILE.lck
|
LOCKFILE=$REPO_DB_FILE.lck
|
||||||
|
|
||||||
verify_repo_extension "$REPO_DB_FILE" >/dev/null
|
verify_repo_extension "$REPO_DB_FILE" >/dev/null
|
||||||
|
Loading…
Reference in New Issue
Block a user