Hi Guille, the last contribution from your side (merged by Estebann this week) for the zero-conf scripts have a glitch. When running the zeroconf for Pharo 7 I receive an "https://github.com/pharo-project/pharo-zeroconf no such file or directory error" error on the bash command line. The reason is simple: in https://github.com/pharo-project/pharo-zeroconf/commit/bdd756d7016b5fdfbef29... the last line in #generateHtmlHeader does not have a # sign for commenting the URL: self << '#<html><head><!--'; cr; << '#<html><head><!--'; cr; << '# The above line makes a fake HTML document out of this bash script'; cr. + << '# The line above makes a fake HTML document out of this bash script'; cr; cr; << '#This zero conf script was generated from the sources found in:'; cr; tab; << 'https://github.com/pharo-project/pharo-zeroconf'; cr. Can you please fix that? Thanks T.