diff options
author | Dave Reisner <d@falconindy.com> | 2010-08-26 20:47:48 -0400 |
---|---|---|
committer | Dave Reisner <d@falconindy.com> | 2010-08-26 20:47:48 -0400 |
commit | db51747c91123e693e5a87e9e8d72c8da481aab2 (patch) | |
tree | af2074d18fd7335b8fa180937e8382146940cf33 | |
parent | d8e9433920749fd1da2539cffccd89f0216b1475 (diff) | |
download | squashfu-db51747c91123e693e5a87e9e8d72c8da481aab2.tar.gz |
squashfu: fix missing semi-colon
-rwxr-xr-x | squashfu | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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 |