Skip to content

Commit

Permalink
Added stacks archetype (#5417)
Browse files Browse the repository at this point in the history
  • Loading branch information
Michail Kuznetsov committed Jun 22, 2017
1 parent 2156886 commit e393bf4
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion dockerfiles/base/scripts/base/commands/cmd_agenerate.sh
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,8 @@ cmd_agenerate() {
"plugin-wizard-archetype - Assembly with custom C project type extension" \
"plugin-serverservice-archetype - Assembly with simple IDE extesion and a server service" \
"plugin-embedjs-archetype - Assembly with simple IDE extesion for using native javascript in widgets" \
"plugin-json-archetype - Assembly with sample JSON project type, editor codeassistant, and workspace services")
"plugin-json-archetype - Assembly with sample JSON project type, editor codeassistant, and workspace services" \
"stacks-archetype - Assembly with sample stack packaging module, for using custom stacks in assemblies")
select opt in "${options[@]}"
do
case $opt in
Expand Down Expand Up @@ -72,6 +73,10 @@ cmd_agenerate() {
ARCHETYPE_ID="plugin-json-archetype"
break
;;
"stacks-archetype - Assembly with sample stack packaging module, for using custom stacks in assemblies")
ARCHETYPE_ID="stacks-archetype"
break
;;
*) echo invalid option;;
esac
done
Expand Down

0 comments on commit e393bf4

Please sign in to comment.