From 68924a8e81be1b985c0a95aa0254ad3cd2981411 Mon Sep 17 00:00:00 2001 From: Justin Brown Date: Wed, 9 Aug 2023 19:23:29 -0700 Subject: [PATCH] Documentation: Update formatting on Ports package.sh example --- Ports/README.md | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/Ports/README.md b/Ports/README.md index 9f8c497f84..8d615f6bed 100644 --- a/Ports/README.md +++ b/Ports/README.md @@ -130,14 +130,16 @@ script simply defines some well-known variables and looks like this: ```bash #!/usr/bin/env -S bash ../.port_include.sh - -port="foo" -version="1.2.3" -useconfigure="true" +port='foo' +version='1.2.3' +useconfigure='true' files=( "https://example.com/foo-${version}.tar.gz 9acd50f9a2af37e471f761c3fe7b8dea5617e51dac802fe6c177b74abf0abb5a" ) -depends=("bar" "baz") +depends=( + 'bar' + 'baz' +) ``` The script in the shebang, [`.port_include.sh`](./.port_include.sh), is where