Commit ea2382b3 authored by Chris Thurber's avatar Chris Thurber Committed by GitHub

Merge pull request #2963 from uberhacker/fix-crew-again

Use end, not fi in crew
parents bc833208 a142890f
......@@ -588,13 +588,13 @@ def install_package (pkgdir)
system "tar cvf - ./usr/* ./home/* | (cd /; tar xp --keep-directory-symlink -f -)"
else
system "tar cvf - ./usr/* | (cd /; tar xp --keep-directory-symlink -f -)"
fi
end
else
if Dir.exists "#{pkgdir}/home" then
system "tar cf - ./usr/* ./home/* | (cd /; tar xp --keep-directory-symlink -f -)"
else
system "tar cf - ./usr/* | (cd /; tar xp --keep-directory-symlink -f -)"
fi
end
end
end
end
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment