Skip to content
Snippets Groups Projects
Commit b6d4ad57 authored by Fredrik Hübinette (Hubbe)'s avatar Fredrik Hübinette (Hubbe)
Browse files

bugfix for dumpmaster

Rev: bin/install.pike:1.5
parent 06de068c
No related branches found
No related tags found
No related merge requests found
......@@ -15,8 +15,8 @@ void fail(string fmt, mixed ... args)
string status(string doing, string file, string|void msg)
{
if(strlen(file)>60)
file="..."+file[strlen(file)-58..];
if(strlen(file)>50)
file="..."+file[strlen(file)-48..];
if(msg) file+=" "+msg;
if(doing) file=doing+" "+file;
......@@ -112,7 +112,7 @@ int install_file(string from,
switch(reverse(to)[..4])
{
case "ekip.":
if(glob(to,"*/master.pike")) break;
if(glob("*/master.pike",to)) break;
case "domp.":
to_dump+=({to});
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment