Skip to content
This repository has been archived by the owner on Mar 4, 2024. It is now read-only.

Commit

Permalink
README.md: Add $ in commands
Browse files Browse the repository at this point in the history
A `$` sign was missing from the build commands from `README.md`, which
leads to an error if running the command as is.

Signed-off-by: Stefan Jumarea <stefanjumarea02@gmail.com>
  • Loading branch information
StefanJum committed Jul 4, 2023
1 parent 3590a6d commit 6f822bb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ cd helloworld/
mkdir .unikraft
git clone https://github.com/unikraft/unikraft .unikraft/unikraft
UK_DEFCONFIG=$(pwd)/.config.helloworld_qemu-x86_64 make defconfig
make -j(nproc)
make -j $(nproc)
/usr/bin/qemu-system-x86_64 -kernel build/helloworld_qemu-x86_64 -nographic
```

Expand All @@ -61,7 +61,7 @@ The same can be done for `AArch64`, by running the commands below:
```console
make properclean
UK_DEFCONFIG=$(pwd)/.config.helloworld_qemu-arm64 make defconfig
make -j(nproc)
make -j $(nproc)
/usr/bin/qemu-system-aarch64 -kernel build/helloworld_qemu-arm64 -nographic -machine virt -cpu cortex-a57
```

Expand Down

0 comments on commit 6f822bb

Please sign in to comment.