Do not add SHA to filename, since it not will be able to rm.

Signed-off-by: Pol Henarejos <pol.henarejos@cttc.es>
This commit is contained in:
Pol Henarejos
2024-09-25 15:16:57 +02:00
parent b9e791ca90
commit e2b06b908e
2 changed files with 4 additions and 4 deletions

View File

@@ -3,9 +3,9 @@
VERSION_MAJOR="5"
VERSION_MINOR="12"
SUFFIX="${VERSION_MAJOR}.${VERSION_MINOR}"
if ! [[ -z "${GITHUB_SHA}" ]]; then
SUFFIX="${SUFFIX}.${GITHUB_SHA}"
fi
#if ! [[ -z "${GITHUB_SHA}" ]]; then
# SUFFIX="${SUFFIX}.${GITHUB_SHA}"
#fi
rm -rf release/*
mkdir -p build_release

View File

@@ -12,7 +12,7 @@ cd picotool
git submodule update --init
mkdir build
cd build
cmake ..
cmake -DPICO_SDK_PATH=../pico-sdk ..
make -j`nproc`
sudo make install
cd ../..