Currently, there's no option for changing this (I'll probably add this in a future version). You'll need to change the code (and make this change after each upgrade/update until the feature is added. If you change /path/to/admin/nph-build.cgi, around line 350, you'll see:
print $USE_HTML
? qq'Building <a href="$CFG->{build_root_url}/$CFG->{build_index}" target="_blank">Home Page</a>...\n'
: qq'Building Home Page...\n';Change that to:
print $USE_HTML
? qq'Building <a href="$CFG->{build_root_url}/shop.html" target="_blank">Home Page</a>...\n'
: qq'Building Home Page...\n';
Adrian
Code:
my $page = $CFG->{build_root_path} . "/" . $CFG->{build_index}; print $USE_HTML
? qq'Building <a href="$CFG->{build_root_url}/$CFG->{build_index}" target="_blank">Home Page</a>...\n'
: qq'Building Home Page...\n';
Code:
my $page = $CFG->{build_root_path} . "/" . "shop.html"; print $USE_HTML
? qq'Building <a href="$CFG->{build_root_url}/shop.html" target="_blank">Home Page</a>...\n'
: qq'Building Home Page...\n';
Adrian