Skip to content

Commit 0a0a403

Browse files
Ignore exit code on make clean of SQLCipher
When running `make clean` on root of project after initially cloing the repository, `make clean` will be run in the SQLCipher directory and may fail. This is safe to ignore.
1 parent 41bcfa9 commit 0a0a403

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

Diff for: android-database-sqlcipher/native.gradle

+2-1
Original file line numberDiff line numberDiff line change
@@ -88,8 +88,9 @@ task cleanSQLCipher() {
8888
gitClean("${sqlcipherDir}")
8989
exec {
9090
workingDir "${sqlcipherDir}"
91+
ignoreExitValue true
9192
commandLine "make", "clean"
92-
}
93+
}
9394
File amalgamationDestinationSource = new File("${nativeRootOutputDir}/cpp/sqlite3.c")
9495
File amalgamationDestinationHeader = new File("${nativeRootOutputDir}/cpp/sqlite3.h")
9596
if (amalgamationDestinationSource.exists()) amalgamationDestinationSource.delete()

0 commit comments

Comments
 (0)