Skip to content
Merged
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion src/shopify-cli/devcontainer-feature.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"id": "shopify-cli",
"version": "1.0.2",
"version": "1.0.3",
"name": "Shopify CLI (via npm)",
"documentationURL": "http://github.com/devcontainers-extra/features/tree/main/src/shopify-cli",
"description": "Shopify CLI is a command-line interface tool that helps you build Shopify apps and themes. It quickly generates Shopify apps, themes, and custom storefronts. You can also use it to automate many common development tasks.",
Expand Down
9 changes: 9 additions & 0 deletions src/shopify-cli/install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,15 @@ set -e
# of the script
ensure_nanolayer nanolayer_location "v0.5.5"

if [ -x "/usr/bin/apt-get" ] ; then
$nanolayer_location \
install \
apt-get \
"xdg-utils"
else
echo "Distro not supported"
exit 1
fi

$nanolayer_location \
install \
Expand Down