Skip to content

Commit d6f8881

Browse files
committed
Update readme
Signed-off-by: Prabhu Subramanian <prabhu@appthreat.com>
1 parent 4f055a6 commit d6f8881

1 file changed

Lines changed: 0 additions & 6 deletions

File tree

README.md

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -161,8 +161,6 @@ To run against SQLCipher, you need to compile `sqlite3` from source by passing b
161161

162162
```bash
163163
npm install sqlite3 --build-from-source --sqlite_libname=sqlcipher --sqlite=/usr/
164-
165-
node -e 'require("sqlite3")'
166164
```
167165

168166
If your SQLCipher is installed in a custom location (if you compiled and installed it yourself), you'll need to set some environment variables:
@@ -175,8 +173,6 @@ Set the location where `brew` installed it:
175173
export LDFLAGS="-L`brew --prefix`/opt/sqlcipher/lib"
176174
export CPPFLAGS="-I`brew --prefix`/opt/sqlcipher/include/sqlcipher"
177175
npm install sqlite3 --build-from-source --sqlite_libname=sqlcipher --sqlite=`brew --prefix`
178-
179-
node -e 'require("sqlite3")'
180176
```
181177

182178
### On most Linuxes (including Raspberry Pi)
@@ -188,8 +184,6 @@ export LDFLAGS="-L/usr/local/lib"
188184
export CPPFLAGS="-I/usr/local/include -I/usr/local/include/sqlcipher"
189185
export CXXFLAGS="$CPPFLAGS"
190186
npm install sqlite3 --build-from-source --sqlite_libname=sqlcipher --sqlite=/usr/local --verbose
191-
192-
node -e 'require("sqlite3")'
193187
```
194188

195189
### Custom builds and Electron

0 commit comments

Comments
 (0)