tad more efficient now

This commit is contained in:
askiiart 2025-02-25 13:34:29 -06:00
parent d33c8ee970
commit b8f2b6ffcf
Signed by untrusted user who does not match committer: askiiart
GPG key ID: 6A32977DAF31746A

View file

@ -2,7 +2,7 @@
set -euo pipefail
# prep
dnf install git cmake g++ -y
dnf install git -y
workdir=$(mktemp -d)
built_dir=${COMPILED_DIR:-/compiled}/polycat
mkdir -p $built_dir
@ -19,7 +19,9 @@ if grep -q $version $version_file; then
echo "already up to date, exiting"
exit
fi
# get the submodules since it needs to be updated
# get build deps
cmake g++
# get submodules
git submodule update --init --depth 1