Update from Devel branch

This commit is contained in:
InsanityAutomation
2020-06-17 10:16:13 -04:00
parent a0d8a0ab14
commit a5b5451314
1704 changed files with 160361 additions and 73829 deletions
+5 -5
View File
@@ -6,7 +6,7 @@
# commit log to watch Travis CI progress.
#
[[ $# == 0 ]] || { echo "Usage: `basename $0`" 1>&2 ; exit 1; }
[[ $# == 0 ]] || { echo "usage: `basename $0`" 1>&2 ; exit 1; }
MFINFO=$(mfinfo) || exit 1
IFS=' ' read -a INFO <<< "$MFINFO"
@@ -14,15 +14,15 @@ FORK=${INFO[1]}
REPO=${INFO[2]}
BRANCH=${INFO[5]}
git push --set-upstream origin $BRANCH
git push --set-upstream origin HEAD:$BRANCH
TOOL=$(which gnome-open xdg-open open | awk '{ print $1 }')
OPEN=$(echo $(which gnome-open xdg-open open) | awk '{ print $1 }')
URL="https://github.com/$FORK/$REPO/commits/$BRANCH"
if [ -z "$TOOL" ]; then
if [ -z "$OPEN" ]; then
echo "Can't find a tool to open the URL:"
echo $URL
else
echo "Viewing commits on $BRANCH..."
"$TOOL" "$URL"
"$OPEN" "$URL"
fi