是否可以为给定的项目/文件夹调用播放命令?我的意思是不在项目文件夹中? 例如:
play dist /path/to/a/given/folder
play dist /path/to/another/folder
在CI中特别有用。
答案 0 :(得分:1)
我能想象的最快方式就是依靠bash功能:
cd /path/to/a/given/folder; pwd; play dist; cd -
cd /path/to/another/folder; pwd; play dist; cd -
当然你不需要一次又一次地写它。您可以为该作业编写小的bash脚本。然后它将one-line
调用。