Skip to content

Commit

Permalink
i#4549 GA CI: Fix package script error (#4615)
Browse files Browse the repository at this point in the history
Fixes a multi-line error in Windows zip commands.

Issue: #4549
  • Loading branch information
derekbruening authored Dec 15, 2020
1 parent b23c1af commit dfd1098
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/ci-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -263,7 +263,8 @@ jobs:
submodules: true

- name: Fetch Sources
run: git fetch --no-tags --depth=1 origin master
run: |
git fetch --no-tags --depth=1 origin master
# Include Dr. Memory in packages.
git clone --depth=2 https://github.com/DynamoRIO/drmemory.git drmemory
cd drmemory && git submodule update --init --depth 250 && cd ..
Expand Down

0 comments on commit dfd1098

Please sign in to comment.