From 6901faf4352090600cad42fec12f4e4be198b86b Mon Sep 17 00:00:00 2001 From: lastradanet <101437425+lastradanet@users.noreply.github.com> Date: Thu, 2 Nov 2023 11:38:28 -0400 Subject: [PATCH] Correct make_metadata.py path --- example/all.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/example/all.sh b/example/all.sh index 06e09b8ba..616f1acca 100755 --- a/example/all.sh +++ b/example/all.sh @@ -8,13 +8,13 @@ startme() { if [ ! -f service_conf.py ] ; then cp service_conf.py.example service_conf.py fi - ../../tools/make_metadata.py sp_conf > sp.xml + ../../src/saml2/tools/make_metadata.py sp_conf > sp.xml cd ../idp2 if [ ! -f idp_conf.py ] ; then cp idp_conf.py.example idp_conf.py fi - ../../tools/make_metadata.py idp_conf > idp.xml + ../../src/saml2/tools/make_metadata.py idp_conf > idp.xml cd ../sp-wsgi ./sp.py sp_conf &