Revision e4ec6413ac56fbc0a61b8b36942c2f038af58944 authored by Mohamed Barakat on 30 March 2017, 12:04:54 UTC, committed by Mohamed Barakat on 30 March 2017, 12:04:54 UTC
1 parent da36bb5
Raw File
make_dist_for_homalg.sh
#/bin/bash

packages="4ti2Interface ExamplesForHomalg GaussForHomalg GradedModules homalg IO_ForHomalg MatricesForHomalg PolymakeInterface SCO ToricVarieties Convex Gauss GradedRingForHomalg HomalgToCAS LocalizeRingForHomalg Modules RingsForHomalg ToolsForHomalg"

base_dir="$PWD"

for i in ${packages}; do
  ./release --srcdir ${base_dir}/${i} --webdir ${base_dir}/gh-pages/${i} --update-file ${base_dir}/gh-pages/update.g
done

echo "Please push website now"

exit 0
back to top