Skip to content

Commit

Permalink
fix: update make file with new include syntax changes
Browse files Browse the repository at this point in the history
  • Loading branch information
shajanjp committed Apr 3, 2020
1 parent f527500 commit 7fb2ce4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions make
Original file line number Diff line number Diff line change
Expand Up @@ -140,13 +140,13 @@ case "$1" in
<meta name=\"description\" content=\"<%= "$moduleNamePlural".metaDescription %>\">
<meta name=\"keywords\" content=\"<%= "$moduleNamePlural".metaKeywords %>\">
<meta name=\"author\" content=\"guyswhocode\">
<% include ../../home/views/partials/styles.ejs %>
<%- include('../../home/views/partials/styles.ejs') %>
<link rel=\"stylesheet\" href=\"/"$moduleNamePlural"/public/css/"$moduleNamePlural".css\">
</head>
<body>
<h1><%= "$moduleNamePlural".title %></h1>
<% include ../../home/views/partials/footer.ejs %>
<% include ../../home/views/partials/scripts.ejs %>
<%- include('../../home/views/partials/scripts.ejs') %>
</body>
</html>" > app/$moduleNamePlural/views/add.ejs;

Expand Down

0 comments on commit 7fb2ce4

Please sign in to comment.