Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
是否可以使用多个 Rakefile 构建多个应用程序?
任何指向实际使用 Rake 构建多个应用程序的人的指针将不胜感激。
我尝试过使用 import,但是单独的 Rakefiles 中的变量似乎相互覆盖?
import 'application1/Rakefile' import 'application2/Rakefile' task :build => ['application1:build', 'application2:build']
在 WebYaST 中,主 Rakefile运行来自所有子项目的任务,但在单独的 rake 进程中,通过system.
system