mirror of https://github.com/FDOS/kernel.git
9 lines
95 B
Bash
9 lines
95 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
if [ -f kernel/kernel.sys ] ; then
|
||
|
echo Kernel has been built
|
||
|
exit 0
|
||
|
fi
|
||
|
|
||
|
exit 1
|