Commit a142890f authored by Ed Reel's avatar Ed Reel

Use end, not fi in crew

parent bc833208
...@@ -588,13 +588,13 @@ def install_package (pkgdir) ...@@ -588,13 +588,13 @@ def install_package (pkgdir)
system "tar cvf - ./usr/* ./home/* | (cd /; tar xp --keep-directory-symlink -f -)" system "tar cvf - ./usr/* ./home/* | (cd /; tar xp --keep-directory-symlink -f -)"
else else
system "tar cvf - ./usr/* | (cd /; tar xp --keep-directory-symlink -f -)" system "tar cvf - ./usr/* | (cd /; tar xp --keep-directory-symlink -f -)"
fi end
else else
if Dir.exists "#{pkgdir}/home" then if Dir.exists "#{pkgdir}/home" then
system "tar cf - ./usr/* ./home/* | (cd /; tar xp --keep-directory-symlink -f -)" system "tar cf - ./usr/* ./home/* | (cd /; tar xp --keep-directory-symlink -f -)"
else else
system "tar cf - ./usr/* | (cd /; tar xp --keep-directory-symlink -f -)" system "tar cf - ./usr/* | (cd /; tar xp --keep-directory-symlink -f -)"
fi end
end end
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