-
Notifications
You must be signed in to change notification settings - Fork 108
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #36 from masatake/version-4.93.2
Version 4.93.2
- Loading branch information
Showing
4 changed files
with
17 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4932,5 +4932,9 @@ July 14, 2018 | |
|
||
Fix a broken symbolic link. | ||
|
||
4.93.2 May 8, 2019 | ||
|
||
Update the version number embedded in lsof executable. | ||
|
||
Masatake YAMATO <[email protected]>, a member of lsof-org | ||
May 7, 2019 | ||
May 8, 2019 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,17 @@ | ||
set -e | ||
set -ex | ||
|
||
echo $1 | ||
echo $BASH_VERSION | ||
shopt | ||
export -p | ||
|
||
./lsof -v | ||
|
||
# | ||
# check that the version numbers are updated | ||
# | ||
expected_version=$(sed '/VN/s/.ds VN \([0-9.a-z]*\)/\1/' ./version) | ||
actual_version=$(./lsof -v 2>&1 | sed -ne 's/^ *revision: *\([0-9.a-z]*\)/\1/p') | ||
dist_version=$(sed -ne 's/^\([0-9][0-9.a-z]*\) .*$/\1/p' 00DIST | tail -1) | ||
test "${expected_version}" = "${actual_version}" | ||
test "${expected_version}" = "${dist_version}" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
.ds VN 4.92.1 | ||
.ds VN 4.93.2 |