You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
❯
❯ sh local-up.sh
make: *** No rule to make target `build'. Stop.
❯
❯ pwd
/xxx/rider/examples/body_to_header_to_refresh
make报错找不到规则, 即 makefile 文件
建议直接在 local-up.sh 中指定 makefile 路径, 就不用退出来执行了
#! /bin/bash
set -o errexit
set -o nounset
set -o pipefail
BASE_ENVOY_IMAGE=${BASE_ENVOY_IMAGE:-"hangoio/envoy-proxy:v0.0.1-b9696c2"}
BASE_IMAGE=${BASE_ENVOY_IMAGE} IMAGE_TAG=rider:local-dev make -C ../../ build
FORCE_BUILD=0
if [[ $# -gt 0 ]]; then
if [[ $1 == "-f" ]]; then
FORCE_BUILD=1
fi
fi
if [[ $FORCE_BUILD == "1" ]]; then
docker-compose -f docker-compose.yaml up --build
else
docker-compose -f docker-compose.yaml up
fi
直接执行
make报错找不到规则, 即 makefile 文件
建议直接在 local-up.sh 中指定 makefile 路径, 就不用退出来执行了
当前目录下直接执行
The text was updated successfully, but these errors were encountered: