Skip to content

Commit 359dcf5

Browse files
remove build dir cleaning in the default build entrypoint
Background: To give developers more control back about their build process, I decided because of #14, that the build directory should not get cleaned by default. This should even be something that the docker image should not take care of at all. Close #14
1 parent 9b83aa3 commit 359dcf5

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

Diff for: entrypoint.sh

-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@ if [ "$1" = "build" ]; then
1212
cd $APP_BUILDDIR
1313
mkdir -p build
1414
cd build
15-
rm -rf *
1615
qmake $ADDITIONAL_ARGS ..
1716
make
1817
fi

0 commit comments

Comments
 (0)