Skip to content

Commit cfc607e

Browse files
committed
Use our temporary SQLCipher 3.4.2 Homebrew tap
This is just until we get some things for SQLCipher 4.0.x worked out.
1 parent c9fc7b2 commit cfc607e

File tree

1 file changed

+7
-3
lines changed

1 file changed

+7
-3
lines changed

installer/macos/build_sqlitebrowser_nightly.sh

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,11 @@ fi
5050

5151
# Ensure Homebrew is owned by my user
5252
echo Ensure Homebrew is owned by my user >>$LOG 2>&1
53-
sudo chown -Rh jc:staff /usr/local >$LOG 2>&1
53+
sudo chown -Rh jc:staff /usr/local >>$LOG 2>&1
54+
55+
# Ensure the temporary SQLCipher v3.4.2 tap is in place
56+
echo Ensure the temporary SQLCipher v3.4.2 tap is in place >>$LOG 2>&1
57+
brew tap justinclift/sqlcipher3 >>$LOG 2>&1
5458

5559
# Update Homebrew
5660
echo Update Homebrew >>$LOG 2>&1
@@ -137,7 +141,7 @@ $BREW remove `$BREW list` --force >>$LOG 2>&1
137141

138142
# Install sqlcipher
139143
echo Install sqlcipher >>$LOG 2>&1
140-
$BREW install sqlcipher --with-fts >>$LOG 2>&1
144+
$BREW install sqlcipher3 --with-fts >>$LOG 2>&1
141145

142146
# Clean the sqlitebrowser source
143147
echo Clean the sqlitebrowser source >>$LOG 2>&1
@@ -211,7 +215,7 @@ fi
211215

212216
# Upload nightly builds and the build log thus far
213217
echo Upload nightly builds >>$LOG 2>&1
214-
rsync -a $HOME/db4s_nightlies/DB\ Browser\ for\ SQLite*${DATE}.dmg $HOME/db4s_nightlies/nightly.log-${DATE} ${UPLOAD_SERVER}:/nightlies/osx/ >>$LOG 2>&1
218+
rsync -aP $HOME/db4s_nightlies/DB\ Browser\ for\ SQLite*${DATE}.dmg $HOME/db4s_nightlies/nightly.log-${DATE} ${UPLOAD_SERVER}:/nightlies/osx/ >>$LOG 2>&1
215219

216220
# Add the new builds to the "latest" directory
217221
ssh ${UPLOAD_SERVER} "cd /nightlies/latest; rm -f *dmg" >>$LOG 2>&1

0 commit comments

Comments
 (0)