Skip to content

Commit 24a1061

Browse files
committed
Find and recompress hidden files.
Fairly small edge-case, rare enough I never thought nor caught it before. Files that begin with a . would not normally be matched by shell glob expressions, but this is easily solvable by setting the “dotglob” shopt.
1 parent b90d030 commit 24a1061

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

reflac

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
#!/usr/bin/env bash
22
set -euo pipefail
3+
shopt -s dotglob
34
IFS=$'\n\t'
45

56
VERSION=2.0.0

0 commit comments

Comments
 (0)