We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8fdc61a commit 0918ff8Copy full SHA for 0918ff8
automation-tools/assembler.sh
@@ -522,11 +522,11 @@ finalize() {
522
fi
523
524
# Inject standard component files if present
525
- local inject_files=("component_launcher.sh" "manifest.json" "functions.sh" "prepare_component.sh" "artifacts/version")
+ local inject_files=("component_launcher.sh" "manifest.json" "functions.sh" "prepare_component.sh" "version")
526
for file in "${inject_files[@]}"; do
527
full_path="$component/$file"
528
if [[ -f "$full_path" ]]; then
529
- mv "$full_path" "$artifact_dir"
+ cp "$full_path" "$artifact_dir"
530
[[ "$file" == *.sh ]] && chmod +x "$artifact_dir/$(basename "$file")"
531
532
done
0 commit comments