Use the master branch, which is now the newest commit always

master
shark 5 years ago
parent fde09106de
commit 82d7dc2ffe

@ -3,13 +3,17 @@
. /bedrock/share/common-code
echo "Fetching latest commits from repository..."
if [ -d /bedrock/cache/bedrocklinux-userland ]; then
less_lethal_rm_rf /bedrock/cache/bedrocklinux-userland
#less_lethal_rm_rf /bedrock/cache/bedrocklinux-userland
cd /bedrock/cache/bedrocklinux-userland
make clean
git pull
else
mkdir -p /bedrock/cache
cd /bedrock/cache
git clone https://github.com/bedrocklinux/bedrocklinux-userland
cd bedrocklinux-userland
fi
mkdir -p /bedrock/cache
cd /bedrock/cache
git clone https://github.com/bedrocklinux/bedrocklinux-userland
cd bedrocklinux-userland
git checkout 0.7beta -q
#git checkout 0.7beta -q #no longer needed, paradigm made master have the latest commit
current_version="$(awk '{print$3}' </bedrock/etc/bedrock-release)"
newest_version="$(awk -F= '/^BEDROCK_VERSION=/{print$2}' Makefile | sed 's/[a-z].*$//')git$(git log | grep -c '^commit')"
echo "Current Version: ${current_version}"
@ -25,7 +29,6 @@ else
fi
fi
# Start the build process
make clean
#if ! grep -q BEDROCK_VERSION Makefile; then # Fix bug with building BusyBox
# sed 's/VERSION/BEDROCK_VERSION/g' Makefile > Makefile-new
# mv Makefile-new Makefile

Loading…
Cancel
Save