Skip to content

Commit

Permalink
fix: update build fe process
Browse files Browse the repository at this point in the history
  • Loading branch information
tanhongit committed Nov 5, 2024
1 parent 78e0057 commit d2bee6a
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 4 deletions.
4 changes: 2 additions & 2 deletions runner.sh
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ case "$1" in
;;

build | build_home | b)
build "${2:-install}"
build_fe "${2:-install}"
;;

worker | start_worker | w)
Expand All @@ -35,7 +35,7 @@ case "$1" in

all | a)
home_sync all
build install
build_fe install
worker
;;

Expand Down
2 changes: 1 addition & 1 deletion setup/functions.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/bin/bash

build() {
build_fe() {
echo '⚙ Building home...'

BUILD_TYPE="$1"
Expand Down
1 change: 0 additions & 1 deletion setup/variables.sh
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,4 @@ HOME_DIR="$SOURCE_DIR/$HOME_NAME"
HOME_FE_DIR="$HOME_DIR/home-fe"
ENV=${ENV:-prod}
GIT_SSH_URL=${GIT_SSH_URL:-git@github.com:cslant}
DOCS_REPO="$GIT_SSH_URL/$DOCS_REPO.git"
USE_SUBMODULES=${USE_SUBMODULES:-false}

0 comments on commit d2bee6a

Please sign in to comment.