14 lines
304 B
Bash
14 lines
304 B
Bash
#! /bin/bash
|
|
RR_VERSION=2,3
|
|
BUILDDIR=/buildfiles/RingRacers
|
|
OUTDIR=/home/ringracers/server
|
|
|
|
cd $BUILDDIR
|
|
git fetch --tags
|
|
git switch --detach tags/v2.3
|
|
cmake --preset ninja-release
|
|
cmake --build --preset ninja-release
|
|
|
|
[[ -d $OUTDIR ]] || mkdir $OUTDIR
|
|
cp build/ninja-release/bin/ringracers_v2.3 $OUTDIR
|