Skip to content

Commit

Permalink
bugfix to bugfix: get rid of infinite recursion
Browse files Browse the repository at this point in the history
  • Loading branch information
niaow committed Nov 12, 2017
1 parent 04b13de commit e744111
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion inst.sh
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ trf() {
mkdir -m $permcode "$ROOTFS/$1" || fail "Failed to create directory /$1" 3
fi
local i=
for i in $(ls -a $1); do
for i in $(ls -A $1); do
trf "$1/$i"
done
else
Expand Down

0 comments on commit e744111

Please sign in to comment.