diff --git a/scripts/get_deliverable.sh b/scripts/get_deliverable.sh deleted file mode 100755 index 09d7920..0000000 --- a/scripts/get_deliverable.sh +++ /dev/null @@ -1,13 +0,0 @@ -# ./get_deliverable.sh -clear -echo "======" -echo http://monarcfo/api/client-anr/$2/deliverable?model=$3 -echo "======" - -curl -H "Token: $1" http://monarcfo/api/client-anr/$2/deliverable?model=$3 > /tmp/exported.docx 2>/dev/null - -if grep "errors" /tmp/exported.docx; then - cat /tmp/exported.docx -fi - -echo "" diff --git a/scripts/upgrade-url.sh b/scripts/upgrade-url.sh deleted file mode 100755 index e9b9f5a..0000000 --- a/scripts/upgrade-url.sh +++ /dev/null @@ -1,18 +0,0 @@ -#!/bin/bash - -oldurl_if_exists() { - if [ -d $1 ]; then - pushd $1 >/dev/null - sed -i -e 's/CASES-LU/monarc-project/g' ./.git/config $2 - git config core.fileMode false - popd >/dev/nul - fi -} - - -oldurl_if_exists . $1 -oldurl_if_exists module/Monarc/Core $1 -oldurl_if_exists module/Monarc/BackOffice $1 -oldurl_if_exists module/Monarc/FrontOffice $1 -oldurl_if_exists node_modules/ng_client $1 -oldurl_if_exists node_modules/ng_anr $1