diff options
author | Mike Delago <32778141+michaeldelago@users.noreply.github.com> | 2023-09-09 19:12:47 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-09-10 01:12:47 +0200 |
commit | c43e1b8c0c3a17e48f1559bdfe13018aaab5008a (patch) | |
tree | e4dd657fb5a76a0143888d2ef0cf2a70c53c2da3 /apps/bash_shared/includes.sh | |
parent | f6d11d526b9f54341075d92f62db7c543aba065d (diff) |
refactor(Apps/Dashboard): Remove Deno as a dependency to the dashboard (#16934)
* remove deno as a dependency
* use the ACORE_VERSION env var
* I forgot client-data
* accidentally removed too much
* docker-cmd: extraneous parallel flag
* typo
* remove docker image prune -af
the `docker image prune` removes the containers we just build.
* fetch everything in the beginning
Diffstat (limited to 'apps/bash_shared/includes.sh')
-rw-r--r-- | apps/bash_shared/includes.sh | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/apps/bash_shared/includes.sh b/apps/bash_shared/includes.sh index 22a4d91b7e..63593e4c56 100644 --- a/apps/bash_shared/includes.sh +++ b/apps/bash_shared/includes.sh @@ -13,9 +13,4 @@ source "$AC_PATH_DEPS/acore/bash-lib/src/event/hooks.sh" source "$AC_PATH_SHARED/common.sh" -source "$AC_PATH_SHARED/deno.sh" - -denoInstall - [[ "$OSTYPE" = "msys" ]] && AC_BINPATH_FULL="$BINPATH" || AC_BINPATH_FULL="$BINPATH/bin" - |