Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions packaging/debian/docker/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,9 @@ echo "=== Starting Debian package build ==="
mkdir -p "$BUILD_DIR"
cd "$BUILD_DIR"

# Clone the repository
echo "Cloning repository..."
git clone https://github.com/vejeta/conquer conquer-4.12
# Instead of cloning, copy the source from the mounted volume
echo "Copying source from mounted volume..."
cp -r "$WORK_DIR/gpl-release" ./conquer-4.12
cd conquer-4.12

# Copy Debian packaging files
Expand Down Expand Up @@ -47,7 +47,7 @@ debuild -us -uc -b
# Create output directory and copy packages
mkdir -p "$OUTPUT_DIR"
cp ../*.deb "$OUTPUT_DIR/"
cp ../*.changes "$OUTPUT_DIR/"
cp ../*.changes "$OUTPUT_DIR/" || true

echo "=== Package build complete ==="
ls -la "$OUTPUT_DIR/"