Skip to content

Commit

Permalink
fix env check
Browse files Browse the repository at this point in the history
  • Loading branch information
chasegiunta authored Aug 6, 2018
1 parent e60822a commit b39d65e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions templates/index.twig
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>{{ siteName }}</title>

{% if not getenv('ENVIRONMENT') == 'dev' and not getenv('ENVIRONMENT') == 'local' %}
{% if getenv('ENVIRONMENT') != 'dev' and getenv('ENVIRONMENT') != 'local' %}
<link rel="stylesheet" href="{{ rev('app.css') }}">
{% endif %}
</head>
Expand All @@ -31,4 +31,4 @@
{% endif %}

</body>
</html>
</html>

0 comments on commit b39d65e

Please sign in to comment.