We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 15cb106 commit 57f15d3Copy full SHA for 57f15d3
steps/helpers.sh
@@ -31,8 +31,8 @@ _get_files() {
31
for f in ${fs}; do
32
# Archive symlinks to directories as symlinks
33
echo "${prefix}/${f}"
34
- if [ -d "${f}" ] && ! [ -h "${f}" ]; then
35
- cd "${f}"
+ if [ -d "./${f}" ] && ! [ -h "./${f}" ]; then
+ cd "./${f}"
36
_get_files "${prefix}/${f}"
37
cd ..
38
fi
@@ -54,9 +54,9 @@ reset_timestamp() {
54
fs="${fs} $(echo .[0-z]*)"
55
56
57
- touch -h -t 197001010000.00 "${f}"
58
- if [ -d "${f}" ]; then
59
+ touch -h -t 197001010000.00 "./${f}"
+ if [ -d "./${f}" ]; then
60
reset_timestamp
61
62
0 commit comments