Skip to content

Commit

Permalink
add env var for debugging step
Browse files Browse the repository at this point in the history
  • Loading branch information
rpodcast committed Apr 2, 2024
1 parent 6c48c63 commit 8ebc0b9
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/scripts/copy-ectd-bundle.sh
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,11 @@ function l { # Log a message to the terminal.
}

# ECTD file to copy from source repo
ECTD_BUNDLE_DIR=submissions-pilot4-webR/ectd_bundle
ECTD_BUNDLE_DIR=ectd_bundle
ECTD_BUNDLE_FILE=r4app.zip

if [ -f "./${ECTD_BUNDLE_DIR}/${ECTD_BUNDLE_FILE}" ]; then
echo "Copying ./${ECTD_BUNDLE_DIR}/${ECTD_BUNDLE_FILE}"
if [ -f "${ECTD_BUNDLE_DIR}/${ECTD_BUNDLE_FILE}" ]; then
echo "Copying ${ECTD_BUNDLE_DIR}/${ECTD_BUNDLE_FILE}"
if [ -f "$DESTINATION_DIR" ]; then
echo "Create new directory ${DESTINATION_DIR}"
mkdir -p "${DESTINATION_DIR}"
Expand Down

0 comments on commit 8ebc0b9

Please sign in to comment.