diff options
author | Richard W.M. Jones <rjones@redhat.com> | 2010-12-31 10:44:32 +0000 |
---|---|---|
committer | Richard W.M. Jones <rjones@redhat.com> | 2010-12-31 10:44:32 +0000 |
commit | d71faf98624c1fb2c760e0e9f55205beb06b7644 (patch) | |
tree | 7a60caf9481710e43a2caa193d93ba2a2d89a26a | |
parent | 7a8c60e1c8fbaf09fb2fa2fe10b50df39c0d9650 (diff) | |
download | libguestfs-d71faf98624c1fb2c760e0e9f55205beb06b7644.tar.gz libguestfs-d71faf98624c1fb2c760e0e9f55205beb06b7644.tar.xz libguestfs-d71faf98624c1fb2c760e0e9f55205beb06b7644.zip |
podwrapper: Fix script indentation.
-rwxr-xr-x | podwrapper.sh.in | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/podwrapper.sh.in b/podwrapper.sh.in index 175368a5..bd710059 100755 --- a/podwrapper.sh.in +++ b/podwrapper.sh.in @@ -168,18 +168,18 @@ if [ -n "$man_output" ]; then --section "$section" -c "Virtualization Support" --name "$name" \ --release "$PACKAGE_NAME-$PACKAGE_VERSION" \ < $tmpdir/full.pod > "$man_output".tmp - mv "$man_output".tmp "$man_output" + mv "$man_output".tmp "$man_output" fi if [ -n "$text_output" ]; then "$POD2TEXT" --stderr -u \ < $tmpdir/full.pod > "$text_output".tmp - mv "$text_output".tmp "$text_output" + mv "$text_output".tmp "$text_output" fi if [ -n "$html_output" ]; then "$POD2HTML" \ --css "pod.css" --htmldir "$abs_top_builddir/html" \ < $tmpdir/full.pod > "$html_output".tmp - mv "$html_output".tmp "$html_output" + mv "$html_output".tmp "$html_output" fi |