Skip to content

Commit

Permalink
Fix sunaku#6
Browse files Browse the repository at this point in the history
  • Loading branch information
netei committed Mar 9, 2016
1 parent 26ced75 commit c902b69
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bin/dasht-docsets-extract
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ for tgz; do
# with the correct name, but we need to temporarily rename it back to the
# wrong name so that the archive extraction below can update its contents
# in place, rather than extracting out to a new (and different) directory
test "$have" = "$want" || test -d "$want" && mv "$want" "$have"
test "$have" = "$want" || { test -d "$want" && mv "$want" "$have"; }

# extract the archive; the extracted directory's path is defined by $have
tar -v -C "$DASHT_DOCSETS_DIR" -z -x -f "$tgz"
Expand Down

0 comments on commit c902b69

Please sign in to comment.