@@ -16,7 +16,7 @@ fi
imgs="$(bashbrew list --repos "$@" | sort -u)"
for img in $imgs; do
- bashbrew fetch --all "$img" # force `git fetch`
+ bashbrew fetch "$img" # force `git fetch`
commits="$(
bashbrew cat --format '
{{- range $e := .Entries -}}
@@ -1,13 +1,7 @@
#!/usr/bin/env bash
set -Eeuo pipefail
-: "${BASHBREW_CACHE:=$HOME/.cache/bashbrew}"
-export BASHBREW_CACHE BASHBREW_ARCH=
-
-if [ ! -d "$BASHBREW_CACHE/git" ]; then
- # initialize the "bashbrew cache"
- bashbrew --arch amd64 from --uniq --apply-constraints hello-world:linux > /dev/null
-fi
+export BASHBREW_ARCH=
if [ "$#" -eq 0 ]; then
set -- '--all'