Skip to content

Commit

Permalink
Add ORE install and missing drops
Browse files Browse the repository at this point in the history
  • Loading branch information
tobyhede committed Oct 24, 2024
1 parent 251f702 commit 51903f7
Show file tree
Hide file tree
Showing 7 changed files with 330 additions and 881 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -180,3 +180,5 @@ cipherstash-proxy.toml

# turbo repo
.turbo

release/
9 changes: 5 additions & 4 deletions justfile
Original file line number Diff line number Diff line change
Expand Up @@ -27,11 +27,12 @@ build:
#!/usr/bin/env bash
set -euxo pipefail
cat sql/dsl-core.sql sql/dsl-config-schema.sql sql/dsl-config-functions.sql sql/dsl-encryptindex.sql > release/cipherstash-encrypt-dsl.sql
cat sql/dsl-drop.sql > release/cipherstash-encrypt-uninstall.sql
grep -h '^DROP' sql/*.sql | tac >> release/cipherstash-encrypt-uninstall.sql

cat release/cipherstash-encrypt-uninstall.sql > release/cipherstash-encrypt.sql
cat sql/dsl-ore.sql sql/dsl-core.sql sql/dsl-config-schema.sql sql/dsl-config-functions.sql sql/dsl-encryptindex.sql >> release/cipherstash-encrypt.sql

cat sql/dsl-drop.sql > release/cipherstash-encrypt-dsl-uninstall.sql
grep -h '^DROP' sql/*.sql | tac >> release/cipherstash-encrypt-dsl-uninstall.sql
# tac release/cipherstash-encrypt-dsl-uninstall.sql release/cipherstash-encrypt-dsl-uninstall.sql



Expand Down
Loading

0 comments on commit 51903f7

Please sign in to comment.