Skip to content

Commit 0a14362

Browse files
BUG FIX: rsc config reported on file sizes with a stray trailing parenthesis.
1 parent ffd029d commit 0a14362

File tree

3 files changed

+4
-2
lines changed

3 files changed

+4
-2
lines changed

NEWS.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,8 @@
2525

2626
* `rsc reset` did not remove the internal `rserver.pid` and
2727
`rserver_monitor.pid` files.
28+
29+
* `rsc config` reported on file sizes with a stray trailing parenthesis.
2830

2931

3032
## Version 0.16.2 [2024-08-21]

bin/incl/files.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ function file_info {
5252
size=$(stat --format="%s" "${file}")
5353
timestamp=$(stat --format="%Y" "${file}")
5454
timestamp=$(date -d "@${timestamp}" "+%F %T")
55-
echo "${size} bytes; ${timestamp})"
55+
echo "${size} bytes; ${timestamp}"
5656
else
5757
echo "<not available>"
5858
fi

bin/rsc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@
7575
### rsc reset --force
7676
### rsc reset --which=user
7777
###
78-
### Version: 0.16.2-9006
78+
### Version: 0.16.2-9007
7979
### Copyright: Henrik Bengtsson (2022-2024) and Harry Putnam (2022)
8080
### License: ISC
8181

0 commit comments

Comments
 (0)