prometeu-runtime/scripts/local-dist.sh
2026-03-24 13:40:52 +00:00

29 lines
834 B
Bash
Executable File

#!/bin/bash
set -e
# Generate version
./scripts/gen-version.sh
# Prepare staging for SDK extra files
echo "Preparing dist-staging..."
rm -rf dist-staging/devtools/debugger-protocol
mkdir -p dist-staging/devtools/debugger-protocol
cp devtools/debugger-protocol/protocol.json dist-staging/devtools/debugger-protocol/
cp VERSION.txt dist-staging/devtools/debugger-protocol/VERSION.txt
# Clean and prepare the version-specific directory
echo "Cleaning dist-staging/stable..."
mkdir -p "dist-staging/stable"
rm -rf "dist-staging/stable/*"
# Build stable using cargo build
dist build
echo "Copying target/distrib content to dist-staging/stable..."
if [ -d "target/distrib" ] && [ "$(ls -A target/distrib)" ]; then
cp -r target/distrib/* "dist-staging/stable/"
else
echo "Warning: target/dist directory not found or empty."
fi