We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 491d3b2 commit fcc25c2Copy full SHA for fcc25c2
1 file changed
Justfile
@@ -40,10 +40,11 @@ build-upstream version:
40
41
# Download and extract upstream Valgrind
42
mkdir -p /tmp/valgrind-upstream
43
- cd /tmp/valgrind-upstream
44
- rm -rf valgrind-{{ version }}*
45
- wget -q https://sourceware.org/pub/valgrind/valgrind-{{ version }}.tar.bz2
46
- tar -xjf valgrind-{{ version }}.tar.bz2
+ rm -rf /tmp/valgrind-upstream/valgrind-{{ version }}*
+ wget -q -O /tmp/valgrind-upstream/valgrind-{{ version }}.tar.bz2 \
+ https://sourceware.org/pub/valgrind/valgrind-{{ version }}.tar.bz2
+ tar -xjf /tmp/valgrind-upstream/valgrind-{{ version }}.tar.bz2 \
47
+ -C /tmp/valgrind-upstream
48
- # Build and install using absolute path
49
+ # Build and install using build-in
50
just build-in "/tmp/valgrind-upstream/valgrind-{{ version }}"
0 commit comments