-
Sub-task
-
Resolution: Done
-
Major
-
2.1.1.Final
-
None
In Forge 1 we could add comments to a script, which was very handy. It had this syntax :
@/* Forge 2.x Script */ ; @/* Generates the draft of the application */ ; clear ; export ACCEPT_DEFAULTS=true ; track-changes ; @/* ========================== */; @/* == Creating the project == */; @/* ========================== */; project-new --named pluralsight-persistence --topLevelPackage com.pluralsight.persistence.module07 --type war --finalName module07 ; @/* ========================= */; @/* == Setting up the model == */; @/* ========================== */; jpa-setup ; constraint-setup ;
It would be nice to be able to add comments. Either with this syntax, or a more Java syntax :
/** == Setting up the model == */