Skip to content

Commit f0c2aea

Browse files
committed
Fix issue while checking source hash (Issue #35)
1 parent d93df41 commit f0c2aea

File tree

3 files changed

+7
-2
lines changed

3 files changed

+7
-2
lines changed

CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Changelog
22

3+
## 4.3.1 (2018/01/15)
4+
5+
* Fix issue while checking source hash (Issue #35)
6+
37
## 4.3.0 (2017/12/26)
48

59
* Add an exclude filter for files through [DL_EXCLUDE_REGEX](https://ftpgrab.github.io/doc/configuration/#dl_exclude_regex) (Issue #27)

README.md

+1
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
<a href="https://github.com/ftpgrab/ftpgrab/releases/latest"><img src="https://img.shields.io/github/release/ftpgrab/ftpgrab.svg?style=flat-square" alt="GitHub release"></a>
55
<a href="https://travis-ci.org/ftpgrab/ftpgrab"><img src="https://img.shields.io/travis/ftpgrab/ftpgrab/master.svg?style=flat-square" alt="Build Status"></a>
66
<a href="https://www.codacy.com/app/crazy-max/ftpgrab"><img src="https://img.shields.io/codacy/grade/354bfb181fc5482dac1e8f31e8e29af5.svg?style=flat-square" alt="Code Quality"></a>
7+
<a href="https://saythanks.io/to/crazymax"><img src="https://img.shields.io/badge/thank-crazymax-426aa5.svg?style=flat-square" alt="Say Thanks"></a>
78
<a href="https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=7NFD44VBNE3VL"><img src="https://img.shields.io/badge/donate-paypal-7057ff.svg?style=flat-square" alt="Donate Paypal"></a>
89
</p>
910

ftpgrab.sh

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
###################################################################################
44
# #
5-
# FTPGrab v4.3.0 #
5+
# FTPGrab v4.3.1 #
66
# #
77
# Simple script to grab your files from a remote FTP server. #
88
# #
@@ -573,7 +573,7 @@ mkdir -p "$HASH_DIR"
573573
if [ ! -d "$HASH_DIR" ]; then ftpgrabEcho "ERROR: Cannot create dir $HASH_DIR with $(whoami) user"; exit 1; fi
574574
if [ ! -w "$HASH_DIR" ]; then ftpgrabEcho "ERROR: Dir $HASH_DIR is not writable by $(whoami)"; exit 1; fi
575575

576-
ftpgrabEcho "FTPGrab v4.3.0 ($BASENAME_FILE - $(date +"%Y/%m/%d %H:%M:%S"))"
576+
ftpgrabEcho "FTPGrab v4.3.1 ($BASENAME_FILE - $(date +"%Y/%m/%d %H:%M:%S"))"
577577
ftpgrabEcho "--------------"
578578

579579
# Check required packages

0 commit comments

Comments
 (0)