Hello,
if tarball prefix is defined as an empty string (unset),
then Fossil will use it.
I think, it would be better to use project-name:
Index: src/info.c
==================================================================
--- src/info.c
+++ src/info.c
@@ -629,11 +629,11 @@
}
if( g.perm.Hyperlink ){
char *zPJ = db_get("short-project-name", 0);
Blob projName;
int jj;
- if( zPJ==0 ) zPJ = db_get("project-name", "unnamed");
+ if( zPJ==0 || zPJ[0]==0 ) zPJ = db_get("project-name", "unnamed");
blob_zero(&projName);
blob_append(&projName, zPJ, -1);
blob_trim(&projName);
zPJ = blob_str(&projName);
for(jj=0; zPJ[jj]; jj++){
--
https://www.juef.tk/
_______________________________________________
fossil-users mailing list
[email protected]
http://lists.fossil-scm.org:8080/cgi-bin/mailman/listinfo/fossil-users