use the right var name

This commit is contained in:
Mayel de Borniol 2022-07-20 14:13:44 +12:00
parent adb8f7be1a
commit d4b53010f6
3 changed files with 4 additions and 4 deletions

View file

@ -85,8 +85,8 @@ COPY assets/package.json assets/*.sh ./assets/
COPY assets/yarn.lock ./assets/
RUN chmod +x assets/*.sh
RUN chmod +x config/*.sh
RUN sh assets/install_app.sh --dev
RUN sh config/deps.js.sh --dev
RUN sh assets/install_app.sh
RUN sh config/deps.js.sh
# FIXME: should we be installing dev deps here?
# Update mime types

View file

@ -7,4 +7,4 @@ echo "Install the app's main JS deps from dir '$SCRIPT_DIR' with args '$@'\n"
yarn -v || npm -g install yarn
cd $DIR && yarn $@
cd $SCRIPT_DIR && yarn $@

View file

@ -3,7 +3,7 @@ defmodule Bonfire.MixProject do
use Mix.Project
@config [ # TODO: put these in ENV or an external writeable config file similar to deps.*
version: "0.3.1-beta.6", # note that the flavour will automatically be added where the dash appears
version: "0.3.1-beta.7", # note that the flavour will automatically be added where the dash appears
elixir: "~> 1.13",
default_flavour: "classic",
logo: "assets/static/images/bonfire-icon.png",