The wget dependency is being checked manually:
# Note: wget is not required when running on a GoboLinux box
if [ ! -e "/Programs/Scripts/Current" -a ! "`our_which wget`" ]
then
echo "Please install wget in order to run this script."
exit 1
fi
However, we can change it to simplify things,
The wget dependencie of CreateRootlessEnvironment is missing
$ diff -u CreateRootlessEnvironment CreateRootlessEnvironment-fabio.m
--- CreateRootlessEnvironment 2006-11-26 03:43:04.25000 -0300
+++ CreateRootlessEnvironment-fabio.m 2006-11-26 03:42:58.171875000 -0300
@@ -11,6 +11,7 @@