diff options
| author | ivarlovlie <git@ivarlovlie.no> | 2023-01-13 22:42:15 +0100 |
|---|---|---|
| committer | ivarlovlie <git@ivarlovlie.no> | 2023-01-13 22:42:15 +0100 |
| commit | e3697aa8b243516d397b4a2fde72ff6725ecc87b (patch) | |
| tree | ff18f9157dcfb37c4a1c5d093733e36f4c7bd3f7 | |
| parent | 96ed308a7f14cefce11d416d6a5143b1bd7595a9 (diff) | |
| download | blob-bin-e3697aa8b243516d397b4a2fde72ff6725ecc87b.tar.xz blob-bin-e3697aa8b243516d397b4a2fde72ff6725ecc87b.zip | |
fix: works
| -rwxr-xr-x | build_and_push.sh | 2 | ||||
| -rw-r--r-- | src/DB.cs | 2 |
2 files changed, 1 insertions, 3 deletions
diff --git a/build_and_push.sh b/build_and_push.sh index 3ea7e26..1db0309 100755 --- a/build_and_push.sh +++ b/build_and_push.sh @@ -14,7 +14,7 @@ else OLD_VERSION=$CURRENT_VERSION fi IMAGE_NAME="blob-bin/server" -HUB_NAME="dr.ivar.systems/blob-in/server" +HUB_NAME="dr.ivar.systems/blob-bin/server" # Check for uncommited changes and optionally commit them if [ "$(git status --untracked-files=no --porcelain)" ]; then @@ -4,8 +4,6 @@ namespace BlobBin; public sealed class DB : DbContext { - private bool _created; - public DB(DbContextOptions<DB> options) : base(options) { Database.Migrate(); } |
