9 lines
179 B
Bash
9 lines
179 B
Bash
#! /bin/bash
|
|
BUILDDIR=/buildfiles/RingRacers
|
|
|
|
cd $BUILDDIR
|
|
git fetch --tags
|
|
git switch --detach tags/$RR_VERSION
|
|
cmake --preset ninja-release
|
|
cmake --build --preset ninja-release
|