aboutsummaryrefslogtreecommitdiffstats
path: root/squashfu
diff options
context:
space:
mode:
authorDave Reisner <d@falconindy.com>2010-08-26 20:47:48 -0400
committerDave Reisner <d@falconindy.com>2010-08-26 20:47:48 -0400
commitdb51747c91123e693e5a87e9e8d72c8da481aab2 (patch)
treeaf2074d18fd7335b8fa180937e8382146940cf33 /squashfu
parentd8e9433920749fd1da2539cffccd89f0216b1475 (diff)
downloadsquashfu-db51747c91123e693e5a87e9e8d72c8da481aab2.tar.gz
squashfu: fix missing semi-colon
Diffstat (limited to 'squashfu')
-rwxr-xr-xsquashfu2
1 files changed, 1 insertions, 1 deletions
diff --git a/squashfu b/squashfu
index e2cd573..f6880d2 100755
--- a/squashfu
+++ b/squashfu
@@ -361,7 +361,7 @@ action_restore () {
for line in "${mapping[@]}"; do
IFS=':' read bin stamp <<< "$line"
for res in "${result[@]}"; do
- [[ $res =~ $BINS_DIR/$bin$1 ]] && { printf " %d\t%s\n" $bin "$(date --date="@$stamp")"; break }
+ [[ $res =~ $BINS_DIR/$bin$1 ]] && { printf " %d\t%s\n" $bin "$(date --date="@$stamp")"; break; }
done
done