Skip to content
Snippets Groups Projects
Commit 556e5493 authored by Allan Blanchard's avatar Allan Blanchard Committed by Andre Maroneze
Browse files

[Distrib] Few simple fixes in generation script

parent e3194a95
No related branches found
No related tags found
No related merge requests found
...@@ -490,7 +490,7 @@ function create_website_branch { ...@@ -490,7 +490,7 @@ function create_website_branch {
run "git -C $WEBSITE_DIR checkout master" run "git -C $WEBSITE_DIR checkout master"
exit 1 exit 1
esac esac
run "git -C $WEBSITE_DIR commit -m \"Prepare pages for the release of Frama-C $FRAMAC_VERSION\"" run "git -C $WEBSITE_DIR commit -m \"$FRAMAC_VERSION_AND_CODENAME release\""
} }
function commit_wiki { function commit_wiki {
...@@ -505,7 +505,7 @@ function commit_wiki { ...@@ -505,7 +505,7 @@ function commit_wiki {
echo "Abort wiki update." echo "Abort wiki update."
exit 1 exit 1
esac esac
run "git -C $WIKI_DIR commit -m \"Prepare pages for the release of Frama-C $FRAMAC_VERSION\"" run "git -C $WIKI_DIR commit -m \"$FRAMAC_VERSION_AND_CODENAME release\""
} }
...@@ -523,10 +523,10 @@ function last_step_validation { ...@@ -523,10 +523,10 @@ function last_step_validation {
This step will: This step will:
- ask for a validation of the changes to website - ask for a validation of the changes to website
- create a NEW branch on for the website - create a NEW local branch for the website
- ask for a validation of the changes to wiki - ask for a validation of the changes to wiki
- commit changes to the wiki MASTER branch - commit changes to the wiki MASTER local branch
If you want to perform some additional checks it is probably time to stop. If you want to perform some additional checks it is probably time to stop.
...@@ -799,7 +799,6 @@ case "${STEP}" in ...@@ -799,7 +799,6 @@ case "${STEP}" in
echo "Bad entry: ${STEP}" echo "Bad entry: ${STEP}"
echo "Exiting without doing anything."; echo "Exiting without doing anything.";
exit 31 exit 31
;;
esac esac
exit 0 exit 0
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment