From 1652abb51037b7b5bb36ef013fff182b69cd289f Mon Sep 17 00:00:00 2001 From: Kevin Goslar Date: Thu, 3 Nov 2022 19:41:33 -0500 Subject: [PATCH 1/2] chore: update Ory CLI with breaking changes to the format task --- Makefile | 4 ++-- scripts/sync.sh | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Makefile b/Makefile index c22fafa..7c7f45c 100644 --- a/Makefile +++ b/Makefile @@ -1,6 +1,6 @@ format: .bin/ory .bin/shfmt node_modules # formats the source code echo formatting ... - .bin/ory dev headers license + .bin/ory dev headers copyright .bin/shfmt --write . npm exec -- prettier --write . @@ -21,7 +21,7 @@ test: .bin/shellcheck .bin/shfmt node_modules # runs all linters .bin/ory: Makefile echo installing Ory CLI ... - curl https://raw.githubusercontent.com/ory/meta/master/install.sh | bash -s -- -b .bin ory v0.1.47 + curl https://raw.githubusercontent.com/ory/meta/master/install.sh | bash -s -- -b .bin ory v0.1.48 touch .bin/ory .bin/shellcheck: Makefile diff --git a/scripts/sync.sh b/scripts/sync.sh index 9361670..5c5515c 100755 --- a/scripts/sync.sh +++ b/scripts/sync.sh @@ -254,7 +254,7 @@ function install_dependencies_on_ci { header "INSTALLING DEPENDENCIES" sudo apt-get update -y sudo apt-get install -y moreutils gettext-base - curl https://raw.githubusercontent.com/ory/meta/master/install.sh | bash -s -- -b .bin ory v0.1.47 + curl https://raw.githubusercontent.com/ory/meta/master/install.sh | bash -s -- -b .bin ory v0.1.48 } # pushes the committed changes from the local Git client to GitHub From acac51dcb1029604a4a67a9d76dc48fb287fd10d Mon Sep 17 00:00:00 2001 From: Kevin Goslar Date: Thu, 3 Nov 2022 20:10:41 -0500 Subject: [PATCH 2/2] Add open-source switch --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 7c7f45c..08f38d5 100644 --- a/Makefile +++ b/Makefile @@ -1,6 +1,6 @@ format: .bin/ory .bin/shfmt node_modules # formats the source code echo formatting ... - .bin/ory dev headers copyright + .bin/ory dev headers copyright --type=open-source .bin/shfmt --write . npm exec -- prettier --write .