diff --git a/Makefile b/Makefile index fb5369d..344d211 100644 --- a/Makefile +++ b/Makefile @@ -40,8 +40,6 @@ ifeq ($(ARCH),x86_64) else mkdir -p docker-images docker buildx build --tag start9/$(PKG_ID)/main:$(PKG_VERSION) \ - --build-arg ARCH=aarch64 \ - --build-arg PLATFORM=arm64 \ --platform=linux/arm64 -o type=docker,dest=docker-images/aarch64.tar . endif @@ -50,8 +48,6 @@ ifeq ($(ARCH),aarch64) else mkdir -p docker-images docker buildx build --tag start9/$(PKG_ID)/main:$(PKG_VERSION) \ - --build-arg ARCH=x86_64 \ - --build-arg PLATFORM=amd64 \ --platform=linux/amd64 -o type=docker,dest=docker-images/x86_64.tar . endif diff --git a/scripts/embassy.ts b/scripts/embassy.ts index 8d2f468..c26f913 100644 --- a/scripts/embassy.ts +++ b/scripts/embassy.ts @@ -1,5 +1,2 @@ -export { setConfig } from "./procedures/setConfig.ts"; -export { getConfig } from "./procedures/getConfig.ts"; -export { properties } from "./procedures/properties.ts"; export { migration } from "./procedures/migrations.ts"; export { health } from "./procedures/healthChecks.ts"; diff --git a/scripts/procedures/getConfig.ts b/scripts/procedures/getConfig.ts deleted file mode 100644 index 71d41c6..0000000 --- a/scripts/procedures/getConfig.ts +++ /dev/null @@ -1,3 +0,0 @@ -import { compat, types as T } from "../deps.ts"; - -export const getConfig: T.ExpectedExports.getConfig = compat.getConfig({}); \ No newline at end of file diff --git a/scripts/procedures/properties.ts b/scripts/procedures/properties.ts deleted file mode 100644 index dff99aa..0000000 --- a/scripts/procedures/properties.ts +++ /dev/null @@ -1,3 +0,0 @@ -import { compat, types as T } from "../deps.ts"; - -export const properties: T.ExpectedExports.properties = compat.properties; diff --git a/scripts/procedures/setConfig.ts b/scripts/procedures/setConfig.ts deleted file mode 100644 index 1e35bfb..0000000 --- a/scripts/procedures/setConfig.ts +++ /dev/null @@ -1,3 +0,0 @@ -import { compat } from "../deps.ts"; - -export const setConfig = compat.setConfig; \ No newline at end of file