Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 6 additions & 2 deletions src/supabase-cli/install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -8,14 +8,18 @@ set -e
# `ensure_nanolayer` is a bash function that will find any existing nanolayer installations,
# and if missing - will download a temporary copy that automatically get deleted at the end
# of the script
ensure_nanolayer nanolayer_location "v0.5.4"
ensure_nanolayer nanolayer_location "v0.5.6"


$nanolayer_location \
install \
devcontainer-feature \
"ghcr.io/devcontainers-extra/features/gh-release:1.0.25" \
--option repo='supabase/cli' --option binaryNames='supabase' --option version="$VERSION"
--option repo='supabase/cli' \
--option binaryNames='supabase' \
--option version="$VERSION" \
--option assetRegex='^supabase_.*_.*_.*.tar.gz$' \
--option releaseTagRegex='^v\d+\.\d+\.\d+$'



Expand Down