Skip to content

Commit 9ad4812

Browse files
authored
Newline and Bashate fixes
Newline and Bashate fixes
2 parents 6dc7875 + 01c7c8b commit 9ad4812

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

inc/app-git-download-release.sh

+2-2
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ cut -d '"' -f 4)"
1111

1212
#Sometimes it struggles for some reason so try again!
1313
if [[ -z $OUTPUT ]]; then
14-
echo -e "${RED}URL NOT FOUND AT FIRST ATTEMPT.. RETRYING$ENDCOLOR"
14+
echo -e "${RED}URL NOT FOUND AT FIRST ATTEMPT.. RETRYING$ENDCOLOR"
1515
OUTPUT="$(curl -s "$APPDOWNLOADURL" | \
1616
grep "$APPDOWNLOADEXT" | \
1717
grep browser_download_url | \
@@ -20,7 +20,7 @@ if [[ -z $OUTPUT ]]; then
2020
fi
2121

2222
if [[ -z $OUTPUT ]]; then
23-
echo -e "${RED}URL NOT FOUND$ENDCOLOR"
23+
echo -e "${RED}URL NOT FOUND$ENDCOLOR"
2424
exit 1
2525
fi
2626

inc/app-git-latest-release-version.sh

-1
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,3 @@ grep tag_name | \
66
cut -d '"' -f 4 | \
77
head -n 1 | \
88
sed s'/[v"]//g')"
9-

0 commit comments

Comments
 (0)