Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions eng/testing/github-ci-trigger-patterns.txt
Original file line number Diff line number Diff line change
Expand Up @@ -54,3 +54,8 @@ Aspire-Core.slnf
.github/workflows/tests-quarantine.yml
.github/workflows/update-*.yml
.github/workflows/auto-rerun-transient-ci-failures.*

# Scripts not used on CI
start-code.sh
localhive.*
dogfood.sh
4 changes: 2 additions & 2 deletions localhive.sh
Original file line number Diff line number Diff line change
Expand Up @@ -453,8 +453,8 @@ if [[ $SKIP_CLI -eq 0 ]]; then
fi
mkdir -p "$CLI_BIN_DIR"

# Copy all files from the publish directory (CLI and its dependencies)
if ! cp -f "$CLI_PUBLISH_DIR"/* "$CLI_BIN_DIR"/; then
# Copy all files and directories from the publish directory (CLI and its dependencies).
if ! cp -Rf "$CLI_PUBLISH_DIR"/. "$CLI_BIN_DIR"/; then
error "Failed to copy CLI files from $CLI_PUBLISH_DIR to $CLI_BIN_DIR"
exit 1
fi
Expand Down
Loading