mirror of
https://git.adityakumar.xyz/lfs-scripts.git
synced 2024-11-12 16:29:44 +00:00
29 lines
381 B
Bash
29 lines
381 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
exit_status=0
|
||
|
|
||
|
function check_exit_code() {
|
||
|
if [ $? -ne 0 ]
|
||
|
then
|
||
|
exit_status=1
|
||
|
else
|
||
|
exit_status=0
|
||
|
fi
|
||
|
}
|
||
|
|
||
|
function stop_script() {
|
||
|
echo "Script failed in $(pwd)/$1"
|
||
|
exit 1
|
||
|
}
|
||
|
|
||
|
echo "Chapter 2"
|
||
|
echo "Checking required packages"
|
||
|
bash ./chapter2/2.2-version-check.sh
|
||
|
|
||
|
check_exit_code
|
||
|
if [ $exit_status -ne 0 ]
|
||
|
then
|
||
|
stop_script "chapter2/2.2-version-check.sh"
|
||
|
fi
|
||
|
|