Skip to content

Commit

Permalink
Fix rsync call to correctly copy in the namada-repo directory
Browse files Browse the repository at this point in the history
  • Loading branch information
ljoss17 committed Apr 26, 2024
1 parent 461d257 commit 901589c
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions .github/workflows/integration.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -425,8 +425,7 @@ jobs:
- name: Fix permissions for Namada repository
id: namada-permissions
run: |
ls -lh ${{ steps.namada-repo-path.outputs.NAMADA_REPO_PATH }}/wasm
rsync -av ${{ steps.namada-repo-path.outputs.NAMADA_REPO_PATH }} /tmp/namada-repo
rsync -av ${{ steps.namada-repo-path.outputs.NAMADA_REPO_PATH }}/ /tmp/namada-repo/
chmod -R a+w /tmp/namada-repo
echo "NAMADA_REPO_PATH=/tmp/namada-repo" >> "$GITHUB_OUTPUT"
- name: Download CometBFT
Expand All @@ -449,7 +448,6 @@ jobs:
cmake .
make
export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:$(pwd)/lib
./bin/wasm-opt --version
mkdir -p $HOME/bin
cp bin/wasm-opt $HOME/bin/wasm-opt
export PATH=$HOME/bin:$PATH
Expand Down

0 comments on commit 901589c

Please sign in to comment.