https://gitlab.ow2.org/sat4j/sat4j.git
Raw File
Tip revision: f4f0ab96f7e1788bd6090067239725fc942f86fb authored by Romain WALLON on 29 January 2020, 17:16:27 UTC
Some changes to take both removal and weakening into account.
Tip revision: f4f0ab9
buildSite.sh
#!/bin/bash
rm -fR fakesite
mkdir fakesite
cp -R target/site/* fakesite
for module in `ls -d org.sat4j.*` ; do mv $module/target/site fakesite/$module ; done
back to top