File tree 1 file changed +4
-4
lines changed
1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change 19
19
if [[ " ${DEPLOY-0} " -eq " 1" ]] || [[ " ${DEPLOY_ALT-0} " -eq " 1" ]]; then
20
20
dist_dir=" ${build_dir} /dist"
21
21
rm -rf " ${dist_dir} /doc"
22
- cp -r " ${dist_dir} " /* " ${upload_dir} "
22
+ mv " ${dist_dir} " /* " ${upload_dir} "
23
23
fi
24
24
25
25
# CPU usage statistics.
26
- cp build/cpu-usage.csv " ${upload_dir} /cpu-${CI_JOB_NAME} .csv"
26
+ mv build/cpu-usage.csv " ${upload_dir} /cpu-${CI_JOB_NAME} .csv"
27
27
28
28
# Build metrics generated by x.py.
29
- cp " ${build_dir} /metrics.json" " ${upload_dir} /metrics-${CI_JOB_NAME} .json"
29
+ mv " ${build_dir} /metrics.json" " ${upload_dir} /metrics-${CI_JOB_NAME} .json"
30
30
31
31
# Toolstate data.
32
32
if [[ -n " ${DEPLOY_TOOLSTATES_JSON+x} " ]]; then
33
- cp /tmp/toolstate/toolstates.json " ${upload_dir} /${DEPLOY_TOOLSTATES_JSON} "
33
+ mv /tmp/toolstate/toolstates.json " ${upload_dir} /${DEPLOY_TOOLSTATES_JSON} "
34
34
fi
35
35
36
36
echo " Files that will be uploaded:"
You can’t perform that action at this time.
0 commit comments