stages:
- build
build:
stage: build
only:
- master
script:
- cp -r dist/* /mnt/myproj/www
tags:
- testTag
报错:
$ cp -r dist/* /mnt/myproj/www
cp: target '/mnt/myproj/www' is not a directory
目标主机存在/mnt/myproj/www,不知道什么原因
stages:
- build
build:
stage: build
only:
- master
script:
- cp -r dist/* /mnt/myproj/www
tags:
- testTag
报错:
$ cp -r dist/* /mnt/myproj/www
cp: target '/mnt/myproj/www' is not a directory
目标主机存在/mnt/myproj/www,不知道什么原因
8 回答4.8k 阅读✓ 已解决
6 回答3.5k 阅读✓ 已解决
6 回答2.4k 阅读
5 回答6.4k 阅读✓ 已解决
3 回答2.5k 阅读✓ 已解决
3 回答2.2k 阅读✓ 已解决
3 回答2.6k 阅读✓ 已解决
target '/mnt/myproj/www' is not a directory
告诉你这个/mnt/myproj/www
不是目录。你这个拷贝期望最后一个目标是目录