`source` 命令适用于一个 Makefile/make 目标,但不适用于同一脚本中的另一个命令

发布于 2025-01-11 12:30:02 字数 349 浏览 0 评论 0原文

我的 Makefile 中的以下条目工作正常:

# in Makefile
format:
    source .venv/bin/activate && isort src/hercl/
    source .venv/bin/activate && black src/hercl/ -l 120
    source .venv/bin/activate && flake8 src/hercl/ --max-line-length 120 --ignore=W605
$ make format
..
All done! ✨ 
              

The following entry in my Makefile works fine:

# in Makefile
format:
    source .venv/bin/activate && isort src/hercl/
    source .venv/bin/activate && black src/hercl/ -l 120
    source .venv/bin/activate && flake8 src/hercl/ --max-line-length 120 --ignore=W605
$ make format
..
All done! ✨ ???? ✨
4 files reformatted, 20 files left unchanged.

But this one does not :

# in Makefile
activate_venv:
    source .venv/bin/activate
$make activate_venv
source .venv/bin/activate
make: source: No such file or directory
make: *** [activate_venv] Error 1

Why will the same command source <something> work in one target and not the other?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文