我正在尝试复制文件作为GitLab管道的一部分,但我得到了
busybox v1.22.1 multicall binary error on copy command
。它可以更早地工作,但突然显示此错误。
这是我的剧本
script:
- mkdir -p ./input
- git log -m -2 --name-only --diff-filter=d --pretty="format:" >
./input/changes.lst
- |
file="./input/changes.lst"
while IFS= read -r line
do
printf '%s\n' "$line";
if [ -e $line ]
then
`cp -R $line ./input/`;
fi
done < "$file"
only:
- master
artifacts:
when: always
paths:
- input