Fix typo
This commit is contained in:
parent
f581835f7c
commit
7dc9667bec
|
@ -1,6 +1,6 @@
|
||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
|
||||||
VALID_ARGS=$(getopt -o s --long subject -- "$@")
|
VALID_ARGS=$(getopt -o s: --long subject: -- "$@")
|
||||||
# shellcheck disable=SC2181
|
# shellcheck disable=SC2181
|
||||||
if [[ ${?} -ne 0 ]]; then
|
if [[ ${?} -ne 0 ]]; then
|
||||||
exit 1;
|
exit 1;
|
||||||
|
@ -28,9 +28,8 @@ done
|
||||||
if [[ -z ${subject} ]]; then
|
if [[ -z ${subject} ]]; then
|
||||||
usage
|
usage
|
||||||
fi
|
fi
|
||||||
fi
|
|
||||||
|
|
||||||
id=$(/root/tasks/announce.sh --get | xmlstarlet sel -t -i '//subject="'${subject}'"' -m "/ocs/data/element/id" -v .)
|
id=$(/root/tasks/announce.sh --get | xmlstarlet sel -t -i '//subject="'"${subject}"'"' -m "/ocs/data/element/id" -v .)
|
||||||
if [[ -n ${id} ]]; then
|
if [[ -n ${id} ]]; then
|
||||||
/root/tasks/announce.sh --delete --id "${id}"
|
/root/tasks/announce.sh --delete --id "${id}"
|
||||||
fi
|
fi
|
||||||
|
|
Loading…
Reference in a new issue