We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e79d171 commit 00078f4Copy full SHA for 00078f4
1 file changed
packaging/debian/docker/build.sh
@@ -15,9 +15,9 @@ echo "=== Starting Debian package build ==="
15
mkdir -p "$BUILD_DIR"
16
cd "$BUILD_DIR"
17
18
-# Clone the repository
19
-echo "Cloning repository..."
20
-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
21
cd conquer-4.12
22
23
# Copy Debian packaging files
@@ -47,7 +47,7 @@ debuild -us -uc -b
47
# Create output directory and copy packages
48
mkdir -p "$OUTPUT_DIR"
49
cp ../*.deb "$OUTPUT_DIR/"
50
-cp ../*.changes "$OUTPUT_DIR/"
+cp ../*.changes "$OUTPUT_DIR/" || true
51
52
echo "=== Package build complete ==="
53
ls -la "$OUTPUT_DIR/"
0 commit comments