Skip to content

Commit ec6bbc4

Browse files
TopRichardboegel
andauthored
Update docs/adding_software/debugging_failed_builds.md
Co-authored-by: Kenneth Hoste <kenneth.hoste@ugent.be>
1 parent 806b82c commit ec6bbc4

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

docs/adding_software/debugging_failed_builds.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -146,10 +146,11 @@ Note that you could also combine approaches: first build everything using the `E
146146

147147
To build software using the `EESSI-install-software.sh` script, you'll first need to get the diff file for the PR. This is used by the `EESSI-install-software.sh` script to see what is changed in this PR - and thus what needs to be build for this PR. To download the diff for PR 360, we would e.g. do
148148
```
149-
wget https://github.com/EESSI/software-layer/pull/360.diff
149+
PR=123456789 # change this to correct the PR number
150+
wget https://github.com/EESSI/software-layer/pull/${PR}.diff
150151
git clone https://github.com/EESSI/software-layer.git
151152
cd software-layer
152-
git pull origin pull/360/head
153+
git pull origin pull/${PR}/head
153154
cd ..
154155
cp -r software-layer/easystacks .
155156
```

0 commit comments

Comments
 (0)