diff --git a/nodejs-helloworld/package.json b/nodejs-helloworld/package.json index 338e1f7ead..3abcc1eeca 100644 --- a/nodejs-helloworld/package.json +++ b/nodejs-helloworld/package.json @@ -7,7 +7,7 @@ "start": "node app.js" }, "author": "Red Hat Training", - "license": "ASL", + "license": "ASL" "dependencies": { "express" "4.14.x" } diff --git a/s2i-scripts/.s2i/bin/assemble b/s2i-scripts/.s2i/bin/assemble index 7e87289759..7b700de2b5 100644 --- a/s2i-scripts/.s2i/bin/assemble +++ b/s2i-scripts/.s2i/bin/assemble @@ -13,11 +13,10 @@ config_s2i echo "---> Installing application source" cp -Rf /tmp/src/*.html ./ -DATE=`date "+%b %d, %Y @ %H:%M %p"` - +DATE=$(date +%F) echo "---> Creating info page" -echo "Page built on $DATE" >> ./info.html -echo "Proudly served by Apache HTTP Server version $HTTPD_VERSION" >> ./info.html +echo "Page built on ${DATE}" > ./info.html +echo "by Janey Alam" >> ./info.html ######## CUSTOMIZATION ENDS HERE ############