Some checks failed
continuous-integration/drone/push Build is failing
- Intentional edit to `compile_stub.sh` in order to cause a build failure.
8 lines
153 B
Bash
8 lines
153 B
Bash
#!/usr/bin/env bash
|
|
echo " "
|
|
echo "======================="
|
|
echo " "
|
|
echo "Compiling Stub..."
|
|
echo " "
|
|
nasm -f elf src/stub/stub.asm -o lib/stub.o
|
|
exit 1 |