Skip to content

Commit

Permalink
Merge pull request #11 from microsoft/update-for-non-standard-output-dir
Browse files Browse the repository at this point in the history
updating projectPost to account for non OEM directory
  • Loading branch information
KevinDMack authored Jul 11, 2024
2 parents b7b8001 + 0af1d0f commit 1c0dace
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .vscode/projectPostBuild.sh
Original file line number Diff line number Diff line change
Expand Up @@ -108,10 +108,10 @@ function clean_python_dir() {
function copy_for_python() {
info_log "START: ${FUNCNAME[0]}"

info_log "Copying '${DOTNET_DLL_BUILD_DIR}/*' to '${PYTHON_DLL_DIR}/'..."
run_a_script "cp -r ${DOTNET_DLL_BUILD_DIR}/* ${PYTHON_DLL_DIR}/"
info_log "Copying '${TARGET_DIR}/*' to '${PYTHON_DLL_DIR}/'..."
run_a_script "cp -r ${TARGET_DIR}/* ${PYTHON_DLL_DIR}/"

info_log "...successfully copied '${DOTNET_DLL_BUILD_DIR}/*' to '${PYTHON_DLL_DIR}/'."
info_log "...successfully copied '${TARGET_DIR}/*' to '${PYTHON_DLL_DIR}/'."

info_log "END: ${FUNCNAME[0]}"
}
Expand Down

0 comments on commit 1c0dace

Please sign in to comment.