1
0
mirror of https://github.com/avatao-content/test-tutorial-framework synced 2025-06-28 10:25:12 +00:00

Refactor hack script due to multistage building

This commit is contained in:
R. Richard
2019-09-05 18:23:57 +02:00
parent e016fc0a24
commit 813d1e7b40
4 changed files with 8 additions and 239 deletions

View File

@ -14,11 +14,11 @@ source "${libhack_dir}/common.sh"
challenge::build() {
pushd "${CHALLENGE_PATH}"
args="--build-arg NOFRONTEND=1" build_challenge_internal
args="" build_challenge_internal
popd
}
challenge::build_with_frontend() {
challenge::build_no_cache() {
pushd "${CHALLENGE_PATH}"
args="--no-cache" build_challenge_internal
popd

View File

@ -1,14 +0,0 @@
# Requires context:
# - FRONTEND_PATH: absolute path of frontend repo
# - CHALLENGE_PATH: absolute path of challenge repo
frontend::run() {
local frontend_in_challenge="${CHALLENGE_PATH}/solvable/frontend"
if [[ "$(find "${frontend_in_challenge}" | wc -l)" -gt 2 ]];then
cd "${frontend_in_challenge}"
else
cd "${FRONTEND_PATH}"
fi
yarn start
}